Commit bd21722c authored by Florent Xicluna's avatar Florent Xicluna

Issue #13140: Fix the daemon_threads attribute of ThreadingMixIn.

parent d4f921af
......@@ -589,8 +589,7 @@ class ThreadingMixIn:
"""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.setDaemon (1)
t.daemon = self.daemon_threads
t.start()
......
......@@ -123,7 +123,6 @@ class SocketServerTest(unittest.TestCase):
self.assertEqual(server.server_address, server.socket.getsockname())
return server
@unittest.skipUnless(threading, 'Threading required for this test.')
@reap_threads
def run_server(self, svrcls, hdlrbase, testfunc):
server = self.make_server(self.pickaddr(svrcls.address_family),
......
......@@ -74,6 +74,8 @@ Core and Builtins
Library
-------
- Issue #13140: Fix the daemon_threads attribute of ThreadingMixIn.
- Issue #2892: preserve iterparse events in case of SyntaxError.
- Issue #670664: Fix HTMLParser to correctly handle the content of
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment