(self, request, client_address, server)
| 99 | recent http request, and always returns a 503 http code.""" |
| 100 | |
| 101 | def __init__(self, request, client_address, server): |
| 102 | http.server.SimpleHTTPRequestHandler.__init__(self, request, client_address, |
| 103 | server) |
| 104 | |
| 105 | def should_send_body_text(self): |
| 106 | # in RequestHandler503 we do not send any body text |