[issue12677] Turtle, fix right/left rotation orientation

2011-08-07 Thread Sandro Tosi
Changes by Sandro Tosi : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___

[issue12677] Turtle, fix right/left rotation orientation

2011-08-07 Thread Roundup Robot
Roundup Robot 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 orientation in doc http://hg.pyth

[issue12677] Turtle, fix right/left rotation orientation

2011-08-06 Thread Senthil Kumaran
Senthil Kumaran added the comment: Sandro - You could go ahead and commit this. -- ___ Python tracker ___ ___ Python-bugs-list mailin

[issue12677] Turtle, fix right/left rotation orientation

2011-08-04 Thread Sandro Tosi
Changes by Sandro Tosi : Added file: http://bugs.python.org/file22835/turtle_right-2.7-v2.patch ___ Python tracker ___ ___ Python-bugs-list ma

[issue12677] Turtle, fix right/left rotation orientation

2011-08-04 Thread Sandro Tosi
Sandro Tosi 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 small note that you have

[issue12677] Turtle, fix right/left rotation orientation

2011-08-03 Thread Ezio Melotti
Ezio Melotti 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 mentioning the mode h

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 maili

[issue12677] Turtle, fix right/left rotation orientation

2011-08-01 Thread Sandro Tosi
Changes by Sandro Tosi : Added file: http://bugs.python.org/file22819/turtle_right-2.7.patch ___ Python tracker ___ ___ Python-bugs-list maili

[issue12677] Turtle, fix right/left rotation orientation

2011-08-01 Thread Sandro Tosi
New submission from Sandro Tosi : 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 'counterclockwise' (even if correc