mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
fix #3628; idle wouldn't start because of a typo
This commit is contained in:
parent
8a2e90e5e7
commit
71088cc200
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ def main(del_exitfunc=False):
|
|||
sockthread = threading.Thread(target=manage_socket,
|
||||
name='SockThread',
|
||||
args=((LOCALHOST, port),))
|
||||
sockthread.set_daemon(True)
|
||||
sockthread.daemon = True
|
||||
sockthread.start()
|
||||
while 1:
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue