[issue3062] Turtle speed() function has no effect under Mac OS X

2017-05-28 Thread Carol Willing
Carol Willing added the comment: Turtle speed() functions appropriately on current MacOS 10.12.4. Both Python 3.1 and 3.2 have reached End of Life. Issue closed as out of date. -- nosy: +willingc resolution: -> out of date stage: needs patch -> resolved status: open -> closed

[issue3062] Turtle speed() function has no effect under Mac OS X

2010-10-19 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net added the comment: I am attaching a simpler and hopefully more revealing test, speed_test.py. This test repeatedly draws a full circle at various speeds and prints the time spent. Here is the result: # python3.1 speed_test.py 0:

[issue3062] Turtle speed() function has no effect under Mac OS X

2010-10-19 Thread Alexander Belopolsky
Changes by Alexander Belopolsky belopol...@users.sourceforge.net: -- nosy: +gregorlingl ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3062 ___ ___

[issue3062] Turtle speed() function has no effect under Mac OS X

2010-10-19 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net added the comment: I am attaching another test that demonstrates that the speed of the turtle is different when it draws a straight line and a circle. The output shows the time it takes to draw a line and a circle of the same length at

[issue3062] Turtle speed() function has no effect under Mac OS X

2010-08-03 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- components: +Library (Lib) stage: - needs patch versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.5, Python 2.6, Python 3.0 ___ Python tracker rep...@bugs.python.org

[issue3062] Turtle speed() function has no effect under Mac OS X

2009-06-21 Thread Guilherme Polo
Guilherme Polo ggp...@gmail.com added the comment: Although turtle.py lives inside the tkinter package, this doesn't seem to be related to tkinter at all. I've set the no selection option for the Components now. -- components: -Tkinter nosy: +gpolo

[issue3062] Turtle speed() function has no effect under Mac OS X

2008-06-21 Thread Ricardo Quesada
Ricardo Quesada [EMAIL PROTECTED] added the comment: turtle.py was replaced by a new module in r63929 . I can't reproduce this bug with this revision, so it seems to be fixed. using: os/x 10.5.3 intel. -- nosy: +riq ___ Python tracker [EMAIL

[issue3062] Turtle speed() function has no effect under Mac OS X

2008-06-21 Thread David Kwast
David Kwast [EMAIL PROTECTED] added the comment: I wrote a small python program to test turtle speed in OSX. I tested with trunk and py3k branch. The string input works differently with 2.5, 2.6 and 3.0. The turtle is slower in 2.5 and almost the same speed in 2.6 and 3.0. Here are my test