[issue6639] turtle: _tkinter.TclError: invalid command name .10170160

2015-02-22 Thread Roundup Robot
Roundup Robot added the comment: New changeset 15dd9d6cc632 by Serhiy Storchaka in branch '2.7': Issue #6639: Module-level turtle functions no longer raise TclError after https://hg.python.org/cpython/rev/15dd9d6cc632 New changeset 1628484c9408 by Serhiy Storchaka in branch '3.4': Issue #6639:

[issue6639] turtle: _tkinter.TclError: invalid command name .10170160

2015-02-22 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- resolution: - fixed stage: patch review - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6639 ___

[issue6639] turtle: _tkinter.TclError: invalid command name .10170160

2015-02-15 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- assignee: - serhiy.storchaka ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6639 ___ ___

[issue6639] turtle: _tkinter.TclError: invalid command name .10170160

2015-02-15 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- nosy: +terry.reedy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6639 ___ ___ Python-bugs-list

[issue6639] turtle: _tkinter.TclError: invalid command name .10170160

2014-09-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Any feedback? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6639 ___ ___ Python-bugs-list mailing list

[issue6639] turtle: _tkinter.TclError: invalid command name .10170160

2014-09-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is more complete patch. -- Added file: http://bugs.python.org/file36531/turtledemo_destroy.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6639

[issue6639] turtle: _tkinter.TclError: invalid command name .10170160

2014-08-29 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- nosy: +serhiy.storchaka versions: +Python 3.4, Python 3.5 -Python 3.1, Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6639 ___

[issue6639] turtle: _tkinter.TclError: invalid command name .10170160

2014-07-30 Thread Lita Cho
Lita Cho added the comment: I can make it worth such that it doesn't raise a Terminator error. This works great when working with Turtle on the command line. I basically check if the root exists for all Tk canvas calls. If it got destroyed, then it just returns. However, if you run the

[issue6639] turtle: _tkinter.TclError: invalid command name .10170160

2014-07-13 Thread Jessica McKellar
Changes by Jessica McKellar jesst...@mit.edu: -- keywords: +needs review stage: needs patch - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6639 ___

[issue6639] turtle: _tkinter.TclError: invalid command name .10170160

2014-06-02 Thread Lita Cho
Lita Cho added the comment: So it looks like the bug fix was really simple. I just needed to set TurtleScreen._RUNNING to True when the screen object tries to get destroyed. -- Added file: http://bugs.python.org/file35462/turtle_crash.patch ___

[issue6639] turtle: _tkinter.TclError: invalid command name .10170160

2014-06-02 Thread Lita Cho
Lita Cho added the comment: Oops, pressed submit too soon. Now the programs raise a Terminator exception rather than a TclError, which I think is correct because the programs are calling Turtle methods when the TurtleScreen had been destroyed. I wasn't sure if it was better to return None

[issue6639] turtle: _tkinter.TclError: invalid command name .10170160

2014-05-27 Thread Lita Cho
Lita Cho added the comment: So I have a patch that fixes the original problem, but doesn't fix the crash with the tdemo_round_dance.py. However, I was wondering why TurtleScreen._RUNNING = True in the _destroy method. Can anyone shed some light on this? Here is the current state of my patch.

[issue6639] turtle: _tkinter.TclError: invalid command name .10170160

2014-05-23 Thread Lita Cho
Changes by Lita Cho lita@gmail.com: -- nosy: +Lita.Cho, jesstess ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6639 ___ ___ Python-bugs-list

[issue6639] turtle: _tkinter.TclError: invalid command name .10170160

2014-05-23 Thread Lita Cho
Changes by Lita Cho lita@gmail.com: ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6639 ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6639] turtle: _tkinter.TclError: invalid command name .10170160

2014-05-23 Thread Lita Cho
Lita Cho added the comment: I was looking at this more, and from my understanding, the turtle code is continuing to run even when the TK window is destroyed. Thus the crash. It looks like the drawing functions are being made on the fly with the following method: for methodname in

[issue6639] turtle: _tkinter.TclError: invalid command name .10170160

2012-03-25 Thread Andrew Svetlov
Changes by Andrew Svetlov andrew.svet...@gmail.com: -- nosy: +asvetlov ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6639 ___ ___ Python-bugs-list

[issue6639] turtle: _tkinter.TclError: invalid command name .10170160

2010-10-27 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net added the comment: Same error occurs when the python -m turtle demo is interrupted by closing the window. I think the correct fix is to exit when the window is closed, but I cannot figure out the best way to achieve that. This probably

[issue6639] turtle: _tkinter.TclError: invalid command name .10170160

2010-10-27 Thread Ned Deily
Changes by Ned Deily n...@acm.org: -- nosy: +ned.deily -BreamoreBoy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6639 ___ ___ Python-bugs-list

[issue6639] turtle: _tkinter.TclError: invalid command name .10170160

2010-10-22 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net added the comment: I have come across the same bug. To reproduce, run Demo/turtle/tdemo_round_dance.py and kill the Tk window before the dance stops. The mysterious command name .10170160 is simply the generated name for the canvas

[issue6639] turtle: _tkinter.TclError: invalid command name .10170160

2010-07-10 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Anyone with turtle/Tkinter knowledge who can shed some light on this? -- nosy: +BreamoreBoy stage: - needs patch versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker

[issue6639] turtle: _tkinter.TclError: invalid command name .10170160

2009-08-03 Thread Sridhar Ratnakumar
New submission from Sridhar Ratnakumar sridh...@activestate.com: I tried the following turtle program; it was taking some time to draw .. so I pressed C-c after which I saw the exception traceback. cat play.py from turtle import * def f(length, depth): if depth == 0: forward(length)

[issue6639] turtle: _tkinter.TclError: invalid command name .10170160

2009-08-03 Thread Sridhar Ratnakumar
Changes by Sridhar Ratnakumar sridh...@activestate.com: -- components: +Tkinter ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6639 ___ ___