[Python-checkins] cpython (merge 3.2 -> default): #12940: merge with 3.2.

ezio.melotti python-checkins at python.org
Sat Sep 10 09:13:24 CEST 2011


http://hg.python.org/cpython/rev/b239b7d9f752
changeset:   72338:b239b7d9f752
parent:      72336:622ecd28e5d1
parent:      72337:1ab62d3b96d2
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Sat Sep 10 10:08:13 2011 +0300
summary:
  #12940: merge with 3.2.

files:
  Doc/library/cmd.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/cmd.rst b/Doc/library/cmd.rst
--- a/Doc/library/cmd.rst
+++ b/Doc/library/cmd.rst
@@ -247,7 +247,7 @@
             right(*parse(arg))
         def do_left(self, arg):
             'Turn turtle left by given number of degrees:  LEFT 90'
-            right(*parse(arg))
+            left(*parse(arg))
         def do_goto(self, arg):
             'Move turtle to an absolute position with changing orientation.  GOTO 100 200'
             goto(*parse(arg))

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list