(self)
| 872 | self.protocol_version = "HTTP/1.1" |
| 873 | |
| 874 | def do_GET(self): |
| 875 | self.get_called = True |
| 876 | self.send_response(HTTPStatus.OK) |
| 877 | self.send_header('Content-Type', 'text/html') |
| 878 | self.end_headers() |
| 879 | self.wfile.write(b'<html><body>Data</body></html>\r\n') |
| 880 | |
| 881 | def log_message(self, format, *args): |
| 882 | pass |
nothing calls this directly
no test coverage detected