[Python-checkins] r73554 - python/trunk/Doc/library/turtle.rst

r.david.murray python-checkins at python.org
Thu Jun 25 16:21:06 CEST 2009


Author: r.david.murray
Date: Thu Jun 25 16:21:06 2009
New Revision: 73554

Log:
Add a couple of missing function alias declarations to the turtle docs.


Modified:
   python/trunk/Doc/library/turtle.rst

Modified: python/trunk/Doc/library/turtle.rst
==============================================================================
--- python/trunk/Doc/library/turtle.rst	(original)
+++ python/trunk/Doc/library/turtle.rst	Thu Jun 25 16:21:06 2009
@@ -1140,6 +1140,7 @@
 
 
 .. function:: shapesize(stretch_wid=None, stretch_len=None, outline=None)
+              turtlesize(stretch_wid=None, stretch_len=None, outline=None)
 
    :param stretch_wid: positive number
    :param stretch_len: positive number
@@ -1332,6 +1333,7 @@
 
 
 .. function:: getturtle()
+              getpen()
 
    Return the Turtle object itself.  Only reasonable use: as a function to
    return the "anonymous turtle":


More information about the Python-checkins mailing list