benjamin.peterson
2008-09-19 21:49:38 UTC
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:
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: