Discussion:
[Python-3000-checkins] r66520 - python/branches/py3k/Lib/socketserver.py
benjamin.peterson
2008-09-20 12:52:07 UTC
Permalink
Author: benjamin.peterson
Date: Sat Sep 20 14:52:07 2008
New Revision: 66520

Log:
kill another set_daemon instance

Modified:
python/branches/py3k/Lib/socketserver.py

Modified: python/branches/py3k/Lib/socketserver.py
==============================================================================
--- python/branches/py3k/Lib/socketserver.py (original)
+++ python/branches/py3k/Lib/socketserver.py Sat Sep 20 14:52:07 2008
@@ -566,7 +566,7 @@
t = threading.Thread(target = self.process_request_thread,
args = (request, client_address))
if self.daemon_threads:
- t.set_daemon(True)
+ t.daemon = True
t.start()

Loading...