[issue21077] Turtle Circle Speed 0

2018-06-16 Thread Carol Willing
Carol Willing added the comment: The next step on this issue would be to test if this behavior is still present in Python 3.6 and 3.7 and report the result of your test here. -- nosy: +willingc ___ Python tracker

[issue21077] Turtle Circle Speed 0

2014-09-17 Thread ingrid
ingrid added the comment: This seems to be caused by a bug in TurtleScreen.update/turtle._drawturtle. When the speed is set to zero, the tracer method is used to regulate drawing circles, and when called with a positive integer, tracer calls update. Update iterates over the list of existing tu

[issue21077] Turtle Circle Speed 0

2014-05-26 Thread Ezio Melotti
Changes by Ezio Melotti : -- stage: -> needs patch type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue21077] Turtle Circle Speed 0

2014-03-29 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.4, Python 3.5 -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue21077] Turtle Circle Speed 0

2014-03-27 Thread Garrett Grimsley
New submission from Garrett Grimsley: A circle is supposed to draw upon a click event, but if speed is set to 0 it appears that the circle fails to draw and all existing lines are erased. A screenshot of the behavior with radius = 20 can be seen here: http://i.imgur.com/y7z87AN.png This state