(self)
| 378 | return [status, response_headers, output] |
| 379 | |
| 380 | def getresponse(self): |
| 381 | response = self.__cnx.getresponse() |
| 382 | |
| 383 | # restore original headers to the response |
| 384 | response.headers = self.response_headers |
| 385 | |
| 386 | return response |
| 387 | |
| 388 | def close(self): |
| 389 | self.__cnx.close() |
nothing calls this directly
no test coverage detected