Commit e2222a08 authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

Fix docstring punctuation

parent 7092f4ce
...@@ -713,7 +713,7 @@ for methodname in dir(RawPen): ...@@ -713,7 +713,7 @@ for methodname in dir(RawPen):
def setup(**geometry): def setup(**geometry):
""" Sets the size and position of the main window. """ 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. width: either a size in pixels or a fraction of the screen.
Default is 50% of screen. Default is 50% of screen.
...@@ -788,7 +788,7 @@ def setup(**geometry): ...@@ -788,7 +788,7 @@ def setup(**geometry):
_root.geometry("%dx%d+%d+%d" % (_width, _height, _startx, _starty)) _root.geometry("%dx%d+%d+%d" % (_width, _height, _startx, _starty))
def title(title): def title(title):
""" set the window title. """Set the window title.
By default this is set to 'Turtle Graphics' By default this is set to 'Turtle Graphics'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment