Start a new thread to process the request.
(self, request, client_address)
| 701 | self.shutdown_request(request) |
| 702 | |
| 703 | def process_request(self, request, client_address): |
| 704 | """Start a new thread to process the request.""" |
| 705 | if self.block_on_close: |
| 706 | vars(self).setdefault('_threads', _Threads()) |
| 707 | t = threading.Thread(target = self.process_request_thread, |
| 708 | args = (request, client_address)) |
| 709 | t.daemon = self.daemon_threads |
| 710 | self._threads.append(t) |
| 711 | t.start() |
| 712 | |
| 713 | def server_close(self): |
| 714 | super().server_close() |
nothing calls this directly
no test coverage detected