(self, *args, **kwargs)
| 38 | # The *args, **kwargs is used because the args are slightly |
| 39 | # different in py2.6 than in py2.7/py3. |
| 40 | def __init__(self, *args, **kwargs): |
| 41 | self._status_tuple = kwargs.pop('status_tuple') |
| 42 | HTTPResponse.__init__(self, *args, **kwargs) |
| 43 | |
| 44 | def _read_status(self): |
| 45 | if self._status_tuple is not None: |