diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-03-14 09:53:34 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-03-14 09:53:34 (GMT) |
commit | 8209fcc3a947276fd40fbb00ca9adef44c4da98c (patch) | |
tree | 67df32490583554a4cff4864434c927aaf24044c /Doc/library/turtle.rst | |
parent | 8c8430e2af6583056e059027c04013e9c5627e97 (diff) | |
download | cpython-8209fcc3a947276fd40fbb00ca9adef44c4da98c.zip cpython-8209fcc3a947276fd40fbb00ca9adef44c4da98c.tar.gz cpython-8209fcc3a947276fd40fbb00ca9adef44c4da98c.tar.bz2 |
Merged revisions 78950 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r78950 | ezio.melotti | 2010-03-14 11:51:37 +0200 (Sun, 14 Mar 2010) | 1 line
#7057: fix several errors.
........
Diffstat (limited to 'Doc/library/turtle.rst')
-rw-r--r-- | Doc/library/turtle.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/turtle.rst b/Doc/library/turtle.rst index 5f9de57..c6ba316 100644 --- a/Doc/library/turtle.rst +++ b/Doc/library/turtle.rst @@ -35,13 +35,13 @@ programmer to use all the commands, classes and methods interactively when using the module from within IDLE run with the ``-n`` switch. The turtle module provides turtle graphics primitives, in both object-oriented -and procedure-oriented ways. Because it uses :mod:`Tkinter` for the underlying +and procedure-oriented ways. Because it uses :mod:`tkinter` for the underlying graphics, it needs a version of Python installed with Tk support. The object-oriented interface uses essentially two+two classes: 1. The :class:`TurtleScreen` class defines graphics windows as a playground for - the drawing turtles. Its constructor needs a :class:`Tkinter.Canvas` or a + the drawing turtles. Its constructor needs a :class:`tkinter.Canvas` or a :class:`ScrolledCanvas` as argument. It should be used when :mod:`turtle` is used as part of some application. @@ -1998,7 +1998,7 @@ The public classes of the module :mod:`turtle` .. class:: RawTurtle(canvas) RawPen(canvas) - :param canvas: a :class:`Tkinter.Canvas`, a :class:`ScrolledCanvas` or a + :param canvas: a :class:`tkinter.Canvas`, a :class:`ScrolledCanvas` or a :class:`TurtleScreen` Create a turtle. The turtle has all methods described above as "methods of @@ -2013,7 +2013,7 @@ The public classes of the module :mod:`turtle` .. class:: TurtleScreen(cv) - :param cv: a :class:`Tkinter.Canvas` + :param cv: a :class:`tkinter.Canvas` Provides screen oriented methods like :func:`setbg` etc. that are described above. |