Returns a dictionary of the response headers.
(self)
| 39 | self.data = resp.data |
| 40 | |
| 41 | def getheaders(self): |
| 42 | """Returns a dictionary of the response headers.""" |
| 43 | return self.urllib3_response.getheaders() |
| 44 | |
| 45 | def getheader(self, name, default=None): |
| 46 | """Returns a given response header.""" |
no outgoing calls
no test coverage detected