]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #7061: Dropped "for Tk" from turtle module title and moved its
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>
Wed, 27 Oct 2010 03:06:43 +0000 (03:06 +0000)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>
Wed, 27 Oct 2010 03:06:43 +0000 (03:06 +0000)
doc section under frameworks.  Also fixed a couple of markup issues
that affected TOC rendering.

Doc/library/ast.rst
Doc/library/cmd.rst
Doc/library/frameworks.rst
Doc/library/pdb.rst
Doc/library/sys.rst
Doc/library/tk.rst
Doc/library/turtle.rst

index 5e2336f235dcba7e8a46d7150339641689c3b8b2..66b29e0946b85a551e8ee8fa64fb806541f9e0a0 100644 (file)
@@ -1,7 +1,5 @@
-.. _ast:
-
-Abstract Syntax Trees
-=====================
+:mod:`ast` --- Abstract Syntax Trees
+====================================
 
 .. module:: ast
    :synopsis: Abstract Syntax Tree classes and manipulation.
index d713b8f6dc32f8db1433cc32fc70df18a6d64b42..d0332aaf8f09f3d9d2558712115d460a8a78bc5e 100644 (file)
@@ -204,7 +204,7 @@ Instances of :class:`Cmd` subclasses have some public instance variables:
    support :program:`Emacs`\ -like line editing  and command-history keystrokes.)
 
 Cmd Example
-===========
+-----------
 
 .. sectionauthor:: Raymond Hettinger <python at rcn dot com>
 
index fe632e011bc7de3ada3c2fce0989afa67537ab1f..15ceeec9c255edb1854119ce96ee23dcd4b1110c 100644 (file)
@@ -13,5 +13,6 @@ The full list of modules described in this chapter is:
 
 .. toctree::
 
+   turtle.rst
    cmd.rst
    shlex.rst
index d613e0b17168786d001aab204d9f2385e5e84b9d..cab4569f4f0251e763a9e10e1456ac609af953e3 100644 (file)
@@ -1,5 +1,3 @@
-.. _debugger:
-
 :mod:`pdb` --- The Python Debugger
 ==================================
 
@@ -164,7 +162,7 @@ access further features, you have to do this yourself:
 .. _debugger-commands:
 
 Debugger Commands
-=================
+-----------------
 
 The commands recognized by the debugger are listed below.  Most commands can be
 abbreviated to one or two letters as indicated; e.g. ``h(elp)`` means that
index bf8e0d01642c7203efc54728a6be25be01c83fe0..01dad9c2f1aee06bf6ff824975e4085dfb8be6fc 100644 (file)
@@ -572,7 +572,7 @@ always available.
    Their intended use is to allow an interactive user to import a debugger module
    and engage in post-mortem debugging without having to re-execute the command
    that caused the error.  (Typical use is ``import pdb; pdb.pm()`` to enter the
-   post-mortem debugger; see chapter :ref:`debugger` for
+   post-mortem debugger; see :mod:`pdb` module for
    more information.)
 
    The meaning of the variables is the same as that of the return values from
index 9cac407de804d7fb7f6d4f522b52e9d29f21dd58..95cd1c7712e7c988379ec0b917d4de112bcbdc36 100644 (file)
@@ -36,7 +36,6 @@ alternatives, see the :ref:`other-gui-packages` section.
    tkinter.ttk.rst
    tkinter.tix.rst
    tkinter.scrolledtext.rst
-   turtle.rst
    idle.rst
    othergui.rst
 
index 2e803bd911842643831abf81d836b48b2a74abea..08fb7a8e0c6e21a4e5f731e9328d3a206e18e853 100644 (file)
@@ -1,9 +1,9 @@
-========================================
-:mod:`turtle` --- Turtle graphics for Tk
-========================================
+=================================
+:mod:`turtle` --- Turtle graphics
+=================================
 
 .. module:: turtle
-   :synopsis: Turtle graphics for Tk
+   :synopsis: An educational framework for simple graphics applications
 .. sectionauthor:: Gregor Lingl <gregor.lingl@aon.at>
 
 .. testsetup:: default