diff options
author | Georg Brandl <georg@python.org> | 2008-09-21 07:50:52 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-09-21 07:50:52 (GMT) |
commit | 23d11d31fe689577f9036c58f3c871ac4b9b4db2 (patch) | |
tree | 75ae7f064f7c078adf833e6d20f25f4edc208aa7 | |
parent | 33d1ae8563fcfc11f3e6ffab1ac63d2a36819af8 (diff) | |
download | cpython-23d11d31fe689577f9036c58f3c871ac4b9b4db2.zip cpython-23d11d31fe689577f9036c58f3c871ac4b9b4db2.tar.gz cpython-23d11d31fe689577f9036c58f3c871ac4b9b4db2.tar.bz2 |
Handle documentation for turtle rename.
-rw-r--r-- | Doc/library/tk.rst | 2 | ||||
-rw-r--r-- | Doc/library/tkinter.rst | 2 | ||||
-rw-r--r-- | Doc/library/turtle.rst (renamed from Doc/library/tkinter.turtle.rst) | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/tk.rst b/Doc/library/tk.rst index 56f5265..959cdf4 100644 --- a/Doc/library/tk.rst +++ b/Doc/library/tk.rst @@ -35,7 +35,7 @@ alternatives, see the :ref:`other-gui-packages` section. tkinter.rst tkinter.tix.rst tkinter.scrolledtext.rst - tkinter.turtle.rst + turtle.rst idle.rst othergui.rst diff --git a/Doc/library/tkinter.rst b/Doc/library/tkinter.rst index 62f6574..b40affa 100644 --- a/Doc/library/tkinter.rst +++ b/Doc/library/tkinter.rst @@ -99,7 +99,7 @@ Other modules that provide Tk support include: Drag-and-drop support for :mod:`tkinter`. This is experimental and should become deprecated when it is replaced with the Tk DND. -:mod:`tkinter.turtle` +:mod:`turtle` Turtle graphics in a Tk window. diff --git a/Doc/library/tkinter.turtle.rst b/Doc/library/turtle.rst index 6bf9c10..79297eb 100644 --- a/Doc/library/tkinter.turtle.rst +++ b/Doc/library/turtle.rst @@ -2,7 +2,7 @@ :mod:`turtle` --- Turtle graphics for Tk ======================================== -.. module:: tkinter.turtle +.. module:: turtle :synopsis: Turtle graphics for Tk .. sectionauthor:: Gregor Lingl <gregor.lingl@aon.at> @@ -1887,5 +1887,5 @@ Changes since Python 2.6 - A method :meth:`Turtle.filling` has been added. It returns a boolean value: ``True`` if a filling process is under way, ``False`` otherwise. This behaviour corresponds to a ``fill()`` call without arguments in - Python 2.6 + Python 2.6. |