[Python-checkins] r50933 - python/trunk/Lib/lib-tk/turtle.py

andrew.kuchling python-checkins at python.org
Sat Jul 29 16:43:56 CEST 2006


Author: andrew.kuchling
Date: Sat Jul 29 16:43:55 2006
New Revision: 50933

Modified:
   python/trunk/Lib/lib-tk/turtle.py
Log:
Fix docstring punctuation

Modified: python/trunk/Lib/lib-tk/turtle.py
==============================================================================
--- python/trunk/Lib/lib-tk/turtle.py	(original)
+++ python/trunk/Lib/lib-tk/turtle.py	Sat Jul 29 16:43:55 2006
@@ -713,7 +713,7 @@
 def setup(**geometry):
     """ Sets the size and position of the main window.
 
-    Keywords are width, height, startx and starty
+    Keywords are width, height, startx and starty:
 
     width: either a size in pixels or a fraction of the screen.
       Default is 50% of screen.
@@ -788,7 +788,7 @@
         _root.geometry("%dx%d+%d+%d" % (_width, _height, _startx, _starty))
 
 def title(title):
-    """ set the window title.
+    """Set the window title.
 
     By default this is set to 'Turtle Graphics'
 


More information about the Python-checkins mailing list