Handle multiple requests if necessary.
(self)
| 462 | return |
| 463 | |
| 464 | def handle(self): |
| 465 | """Handle multiple requests if necessary.""" |
| 466 | self.close_connection = True |
| 467 | |
| 468 | self.handle_one_request() |
| 469 | while not self.close_connection: |
| 470 | self.handle_one_request() |
| 471 | |
| 472 | def send_error(self, code, message=None, explain=None): |
| 473 | """Send and log an error reply. |
nothing calls this directly
no test coverage detected