[issue12677] Turtle, fix right/left rotation orientation

2011-08-07 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset a30e6c4bf486 by Sandro Tosi in branch '2.7': #12677: correct turtle orientation in doc http://hg.python.org/cpython/rev/a30e6c4bf486 New changeset bf4f65043d7d by Sandro Tosi in branch '3.2': #12677: correct turtle

[issue12677] Turtle, fix right/left rotation orientation

2011-08-07 Thread Sandro Tosi
Changes by Sandro Tosi sandro.t...@gmail.com: -- resolution: - fixed stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12677 ___

[issue12677] Turtle, fix right/left rotation orientation

2011-08-06 Thread Senthil Kumaran
Senthil Kumaran sent...@uthcode.com added the comment: Sandro - You could go ahead and commit this. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12677 ___

[issue12677] Turtle, fix right/left rotation orientation

2011-08-04 Thread Sandro Tosi
Sandro Tosi sandro.t...@gmail.com added the comment: As mentioned by Ezio, and I also verified myself, mode() doesn't influence the orientation on left()/right() methods (probably it affects some other functs?). Following was Ezio and I discussed on IRC, I've updated the 2 patches to add a

[issue12677] Turtle, fix right/left rotation orientation

2011-08-04 Thread Sandro Tosi
Changes by Sandro Tosi sandro.t...@gmail.com: Added file: http://bugs.python.org/file22835/turtle_right-2.7-v2.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12677 ___

[issue12677] Turtle, fix right/left rotation orientation

2011-08-03 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: It seems to me that right() always turns the turtle clockwise, both with the standard and the logo mode. I agree that changing left-right and leave clockwise is better than changing clockwise-counterclockwise. I don't think it's worth

Re: [issue12677] Turtle, fix right/left rotation orientation

2011-08-02 Thread Senthil Kumaran
The orientation depends upon the mode, which is explained further down. http://docs.python.org/py3k/library/turtle.html#turtle.left So, the correct fix would be: would turn clockwise/counterclockwise depending upon the mode. ___ Python-bugs-list

[issue12677] Turtle, fix right/left rotation orientation

2011-08-01 Thread Sandro Tosi
New submission from Sandro Tosi sandro.t...@gmail.com: Hello, following up http://mail.python.org/pipermail/docs/2011-July/005235.html here's 2 patch (for 3.3 + 3.2 and 2.7) to correct the orientation in the documentation, using turtle.right instead of turtle.left, since the work

[issue12677] Turtle, fix right/left rotation orientation

2011-08-01 Thread Sandro Tosi
Changes by Sandro Tosi sandro.t...@gmail.com: Added file: http://bugs.python.org/file22819/turtle_right-2.7.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12677 ___