Returns a dictionary of the response headers.
(self)
| 35 | return self.data |
| 36 | |
| 37 | def getheaders(self): |
| 38 | """Returns a dictionary of the response headers.""" |
| 39 | return self.response.headers |
| 40 | |
| 41 | def getheader(self, name, default=None): |
| 42 | """Returns a given response header.""" |
no outgoing calls
no test coverage detected