[Python-3000-checkins] r66520 - python/branches/py3k/Lib/socketserver.py

benjamin.peterson python-3000-checkins at python.org
Sat Sep 20 14:52:07 CEST 2008


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()
 
 


More information about the Python-3000-checkins mailing list