[Python-checkins] r85853 - in python/branches/py3k/Doc/library: ast.rst cmd.rst frameworks.rst pdb.rst sys.rst tk.rst turtle.rst

alexander.belopolsky python-checkins at python.org
Wed Oct 27 05:06:43 CEST 2010


Author: alexander.belopolsky
Date: Wed Oct 27 05:06:43 2010
New Revision: 85853

Log:
Issue #7061: Dropped "for Tk" from turtle module title and moved its
doc section under frameworks.  Also fixed a couple of markup issues
that affected TOC rendering.


Modified:
   python/branches/py3k/Doc/library/ast.rst
   python/branches/py3k/Doc/library/cmd.rst
   python/branches/py3k/Doc/library/frameworks.rst
   python/branches/py3k/Doc/library/pdb.rst
   python/branches/py3k/Doc/library/sys.rst
   python/branches/py3k/Doc/library/tk.rst
   python/branches/py3k/Doc/library/turtle.rst

Modified: python/branches/py3k/Doc/library/ast.rst
==============================================================================
--- python/branches/py3k/Doc/library/ast.rst	(original)
+++ python/branches/py3k/Doc/library/ast.rst	Wed Oct 27 05:06:43 2010
@@ -1,7 +1,5 @@
-.. _ast:
-
-Abstract Syntax Trees
-=====================
+:mod:`ast` --- Abstract Syntax Trees
+====================================
 
 .. module:: ast
    :synopsis: Abstract Syntax Tree classes and manipulation.

Modified: python/branches/py3k/Doc/library/cmd.rst
==============================================================================
--- python/branches/py3k/Doc/library/cmd.rst	(original)
+++ python/branches/py3k/Doc/library/cmd.rst	Wed Oct 27 05:06:43 2010
@@ -204,7 +204,7 @@
    support :program:`Emacs`\ -like line editing  and command-history keystrokes.)
 
 Cmd Example
-===========
+-----------
 
 .. sectionauthor:: Raymond Hettinger <python at rcn dot com>
 

Modified: python/branches/py3k/Doc/library/frameworks.rst
==============================================================================
--- python/branches/py3k/Doc/library/frameworks.rst	(original)
+++ python/branches/py3k/Doc/library/frameworks.rst	Wed Oct 27 05:06:43 2010
@@ -13,5 +13,6 @@
 
 .. toctree::
 
+   turtle.rst
    cmd.rst
    shlex.rst

Modified: python/branches/py3k/Doc/library/pdb.rst
==============================================================================
--- python/branches/py3k/Doc/library/pdb.rst	(original)
+++ python/branches/py3k/Doc/library/pdb.rst	Wed Oct 27 05:06:43 2010
@@ -1,5 +1,3 @@
-.. _debugger:
-
 :mod:`pdb` --- The Python Debugger
 ==================================
 
@@ -164,7 +162,7 @@
 .. _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

Modified: python/branches/py3k/Doc/library/sys.rst
==============================================================================
--- python/branches/py3k/Doc/library/sys.rst	(original)
+++ python/branches/py3k/Doc/library/sys.rst	Wed Oct 27 05:06:43 2010
@@ -572,7 +572,7 @@
    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

Modified: python/branches/py3k/Doc/library/tk.rst
==============================================================================
--- python/branches/py3k/Doc/library/tk.rst	(original)
+++ python/branches/py3k/Doc/library/tk.rst	Wed Oct 27 05:06:43 2010
@@ -36,7 +36,6 @@
    tkinter.ttk.rst
    tkinter.tix.rst
    tkinter.scrolledtext.rst
-   turtle.rst
    idle.rst
    othergui.rst
 

Modified: python/branches/py3k/Doc/library/turtle.rst
==============================================================================
--- python/branches/py3k/Doc/library/turtle.rst	(original)
+++ python/branches/py3k/Doc/library/turtle.rst	Wed Oct 27 05:06:43 2010
@@ -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 at aon.at>
 
 .. testsetup:: default


More information about the Python-checkins mailing list