(self)
| 418 | class RobotHandler(BaseHTTPRequestHandler): |
| 419 | |
| 420 | def do_GET(self): |
| 421 | self.send_response(200) |
| 422 | self.end_headers() |
| 423 | self.wfile.write(SAMPLE_ROBOTS_TXT) |
| 424 | |
| 425 | def log_message(self, format, *args): |
| 426 | pass |
nothing calls this directly
no test coverage detected