[Python-3000-checkins] r66518 - python/branches/py3k/Lib/idlelib/run.py

benjamin.peterson python-3000-checkins at python.org
Fri Sep 19 23:49:38 CEST 2008


Author: benjamin.peterson
Date: Fri Sep 19 23:49:37 2008
New Revision: 66518

Log:
fix #3628; idle wouldn't start because of a typo

Modified:
   python/branches/py3k/Lib/idlelib/run.py

Modified: python/branches/py3k/Lib/idlelib/run.py
==============================================================================
--- python/branches/py3k/Lib/idlelib/run.py	(original)
+++ python/branches/py3k/Lib/idlelib/run.py	Fri Sep 19 23:49:37 2008
@@ -73,7 +73,7 @@
     sockthread = threading.Thread(target=manage_socket,
                                   name='SockThread',
                                   args=((LOCALHOST, port),))
-    sockthread.set_daemon(True)
+    sockthread.daemon = True
     sockthread.start()
     while 1:
         try:


More information about the Python-3000-checkins mailing list