summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2006-07-29 14:43:55 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2006-07-29 14:43:55 (GMT)
commite2222a083b434b582d7b7f8d1e7155b55b769323 (patch)
tree8cf5ddc67b960cb3cf6162b50e5d98627cf23404
parent7092f4ce9f887524cea9df0d6ea6636aa8f01f03 (diff)
downloadcpython-e2222a083b434b582d7b7f8d1e7155b55b769323.zip
cpython-e2222a083b434b582d7b7f8d1e7155b55b769323.tar.gz
cpython-e2222a083b434b582d7b7f8d1e7155b55b769323.tar.bz2
Fix docstring punctuation
-rw-r--r--Lib/lib-tk/turtle.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/lib-tk/turtle.py b/Lib/lib-tk/turtle.py
index 4b90c61..01a55b1 100644
--- a/Lib/lib-tk/turtle.py
+++ b/Lib/lib-tk/turtle.py
@@ -713,7 +713,7 @@ for methodname in dir(RawPen):
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 @@ def setup(**geometry):
_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'