(self)
| 1233 | self.protocol_version = "HTTP/1.1" |
| 1234 | |
| 1235 | def do_GET(self): |
| 1236 | self.get_called = True |
| 1237 | self.send_response(HTTPStatus.OK) |
| 1238 | self.send_header('Content-Type', 'text/html') |
| 1239 | self.end_headers() |
| 1240 | self.wfile.write(b'<html><body>Data</body></html>\r\n') |
| 1241 | |
| 1242 | def log_message(self, format, *args): |
| 1243 | pass |
nothing calls this directly
no test coverage detected