(self, uri, method='GET', body=None, headers={})
| 127 | threading_helper.threading_cleanup(*self._threads) |
| 128 | |
| 129 | def request(self, uri, method='GET', body=None, headers={}): |
| 130 | self.connection = http.client.HTTPConnection(self.HOST, self.PORT) |
| 131 | self.connection.request(method, uri, body, headers) |
| 132 | return self.connection.getresponse() |
| 133 | |
| 134 | |
| 135 | class BaseHTTPServerTestCase(BaseTestCase): |
no test coverage detected