(self, request, client_address, server)
| 125 | """"Override RequestHandler503 so as to send body text with the 503 message.""" |
| 126 | |
| 127 | def __init__(self, request, client_address, server): |
| 128 | RequestHandler503.__init__(self, request, client_address, server) |
| 129 | |
| 130 | def should_send_body_text(self): |
| 131 | # in RequestHandler503Extra we will send body text |