Same as in BaseServer but as a thread. In addition, exception handling is done here.
(self, request, client_address)
| 688 | _threads = _NoThreads() |
| 689 | |
| 690 | def process_request_thread(self, request, client_address): |
| 691 | """Same as in BaseServer but as a thread. |
| 692 | |
| 693 | In addition, exception handling is done here. |
| 694 | |
| 695 | """ |
| 696 | try: |
| 697 | self.finish_request(request, client_address) |
| 698 | except Exception: |
| 699 | self.handle_error(request, client_address) |
| 700 | finally: |
| 701 | self.shutdown_request(request) |
| 702 | |
| 703 | def process_request(self, request, client_address): |
| 704 | """Start a new thread to process the request.""" |
nothing calls this directly
no test coverage detected