Message146127
"""
"""Start a new thread to process the request."""
t = threading.Thread(target = self.process_request_thread,
args = (request, client_address))
if self.daemon_threads:
t.daemon = True
"""
If daemon_threads is false, t.daemon is not set, and the daemonic property is inherited from the creating thread, i.e. the server thread.
Patch attached (I don't think a test is necessary for such a trivial change). |
|
Date |
User |
Action |
Args |
2011-10-21 20:15:13 | neologix | set | recipients:
+ neologix, vstinner, flox |
2011-10-21 20:15:13 | neologix | set | messageid: <1319228113.01.0.876364876801.issue13140@psf.upfronthosting.co.za> |
2011-10-21 20:15:12 | neologix | link | issue13140 messages |
2011-10-21 20:15:12 | neologix | create | |
|