Handle multiple requests if necessary.
(self)
| 490 | return |
| 491 | |
| 492 | def handle(self): |
| 493 | """Handle multiple requests if necessary.""" |
| 494 | self.close_connection = True |
| 495 | |
| 496 | self.handle_one_request() |
| 497 | while not self.close_connection: |
| 498 | self.handle_one_request() |
| 499 | |
| 500 | def send_error(self, code, message=None, explain=None): |
| 501 | """Send and log an error reply. |
nothing calls this directly
no test coverage detected