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.

Author belopolsky
Recipients belopolsky, gregorlingl, terry.reedy
Date 2011-02-01.05:00:49
SpamBayes Score 3.2908604e-10
Marked as misclassified No
Message-id <1296536449.96.0.0897260034863.issue7074@psf.upfronthosting.co.za>
In-reply-to
Content
I can reproduce the crash on OSX.  After ~ 100 keystrokes, I get the following diagnostics:

Exception in Tkinter callback
Traceback (most recent call last):
  File "/Users/sasha/Work/python-svn/py3k-commit/Lib/tkinter/__init__.py", line 1399, in __call__
    return self.func(*args)
  File "/Users/sasha/Work/python-svn/py3k-commit/Lib/turtle.py", line 701, in eventfun
    fun()
  File "turtlecrash.py", line 12, in klt
    def klt(): seth(180); fd(vel)
  File "<string>", line 1, in seth
  File "/Users/sasha/Work/python-svn/py3k-commit/Lib/turtle.py", line 1936, in setheading
    self._rotate(angle)
  File "/Users/sasha/Work/python-svn/py3k-commit/Lib/turtle.py", line 3277, in _rotate
    self._update()
  File "/Users/sasha/Work/python-svn/py3k-commit/Lib/turtle.py", line 2660, in _update
    self._update_data()
  File "/Users/sasha/Work/python-svn/py3k-commit/Lib/turtle.py", line 2651, in _update_data
    self._pencolor, self._pensize)
  File "/Users/sasha/Work/python-svn/py3k-commit/Lib/turtle.py", line 545, in _drawline
    self.cv.coords(lineitem, *cl)
  File "<string>", line 1, in coords
RuntimeError: maximum recursion depth exceeded
Fatal Python error: Cannot recover from stack overflow.
Abort trap
History
Date User Action Args
2011-02-01 05:00:50belopolskysetrecipients: + belopolsky, terry.reedy, gregorlingl
2011-02-01 05:00:49belopolskysetmessageid: <1296536449.96.0.0897260034863.issue7074@psf.upfronthosting.co.za>
2011-02-01 05:00:49belopolskylinkissue7074 messages
2011-02-01 05:00:49belopolskycreate