コード例 #1
0
ファイル: awsrequest.py プロジェクト: ithefast/edx_ansible
 def _read_status(self):
     if self._status_tuple is not None:
         status_tuple = self._status_tuple
         self._status_tuple = None
         return status_tuple
     else:
         return HTTPResponse._read_status(self)
コード例 #2
0
ファイル: awsrequest.py プロジェクト: henrysher/botocorev063p
 def _read_status(self):
     if self._status_tuple is not None:
         status_tuple = self._status_tuple
         self._status_tuple = None
         return status_tuple
     else:
         return HTTPResponse._read_status(self)
コード例 #3
0
ファイル: awsrequest.py プロジェクト: ithefast/edx_ansible
 def __init__(self, *args, **kwargs):
     self._status_tuple = kwargs.pop('status_tuple')
     HTTPResponse.__init__(self, *args, **kwargs)
コード例 #4
0
ファイル: awsrequest.py プロジェクト: henrysher/botocorev063p
 def __init__(self, *args, **kwargs):
     self._status_tuple = kwargs.pop('status_tuple')
     HTTPResponse.__init__(self, *args, **kwargs)