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

georg.brandl python-checkins at python.org
Thu Apr 23 10:49:39 CEST 2009


Author: georg.brandl
Date: Thu Apr 23 10:49:39 2009
New Revision: 71815

Log:
Fix rewrapping accident.

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 Apr 23 10:49:39 2009
@@ -1244,9 +1244,9 @@
 
 .. function:: screensize(canvwidth=None, canvheight=None, bg=None)
 
-   :param canvwidth: positive integer, new width of canvas in pixels :param
-   canvheight: positive integer, new height of canvas in pixels :param bg:
-   colorstring or color-tuple, new background color
+   :param canvwidth: positive integer, new width of canvas in pixels
+   :param canvheight: positive integer, new height of canvas in pixels
+   :param bg: colorstring or color-tuple, new background color
 
    If no arguments are given, return current (canvaswidth, canvasheight).  Else
    resize the canvas the turtles are drawing on.  Do not alter the drawing


More information about the Python-checkins mailing list