[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 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 various speed settings. $ python3 s

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

2010-10-19 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- nosy: +gregorlingl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

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

2010-10-19 Thread Alexander Belopolsky
Alexander Belopolsky 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: 0.03 1: 6.61 2

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

2010-08-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- 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

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

2009-06-21 Thread Guilherme Polo
Guilherme Polo 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 ___ Python trac

[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 re

[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 PROTEC

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

2008-06-08 Thread Pierre Bourdon
New submission from Pierre Bourdon <[EMAIL PROTECTED]>: When using the speed() function of the turtle module under Mac OS X, it has no effect : the turtle always draws lines with the same speed. An easy fix is to replace line 553 of the turtle.py file by "sleep(self._delay / 1000.0)", however