This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Turtle.py hangs Idle
Type: Stage:
Components: None Versions:
process
Status: closed Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: tso
Priority: normal Keywords:

Created on 2004-10-15 04:12 by tso, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (1)
msg22702 - (view) Author: Taro Ogawa (tso) Date: 2004-10-15 04:12
1 line fix:

After line 336's:
   root.destroy()
insert
   root.quit()

[Since IDLE is Tkinter based, the implict quit can't 
happen immediately.  Worse, the shell has difficulty 
resetting and using a ^C can leave a zombie process]

-T.
History
Date User Action Args
2022-04-11 14:56:07adminsetgithub: 41024
2004-10-15 04:12:32tsocreate