[Python-checkins] r88209 - in python/branches/py3k/Doc/library: argparse.rst bdb.rst cgi.rst collections.rst colorsys.rst concurrent.futures.rst html.entities.rst html.parser.rst html.rst pyclbr.rst runpy.rst shlex.rst symbol.rst sysconfig.rst tabnanny.rst tarfile.rst tempfile.rst timeit.rst token.rst types.rst
raymond.hettinger
python-checkins at python.org
Thu Jan 27 02:20:32 CET 2011
Author: raymond.hettinger
Date: Thu Jan 27 02:20:32 2011
New Revision: 88209
Log:
More source links.
Modified:
python/branches/py3k/Doc/library/argparse.rst
python/branches/py3k/Doc/library/bdb.rst
python/branches/py3k/Doc/library/cgi.rst
python/branches/py3k/Doc/library/collections.rst
python/branches/py3k/Doc/library/colorsys.rst
python/branches/py3k/Doc/library/concurrent.futures.rst
python/branches/py3k/Doc/library/html.entities.rst
python/branches/py3k/Doc/library/html.parser.rst
python/branches/py3k/Doc/library/html.rst
python/branches/py3k/Doc/library/pyclbr.rst
python/branches/py3k/Doc/library/runpy.rst
python/branches/py3k/Doc/library/shlex.rst
python/branches/py3k/Doc/library/symbol.rst
python/branches/py3k/Doc/library/sysconfig.rst
python/branches/py3k/Doc/library/tabnanny.rst
python/branches/py3k/Doc/library/tarfile.rst
python/branches/py3k/Doc/library/tempfile.rst
python/branches/py3k/Doc/library/timeit.rst
python/branches/py3k/Doc/library/token.rst
python/branches/py3k/Doc/library/types.rst
Modified: python/branches/py3k/Doc/library/argparse.rst
==============================================================================
--- python/branches/py3k/Doc/library/argparse.rst (original)
+++ python/branches/py3k/Doc/library/argparse.rst Thu Jan 27 02:20:32 2011
@@ -4,9 +4,13 @@
.. module:: argparse
:synopsis: Command-line option and argument parsing library.
.. moduleauthor:: Steven Bethard <steven.bethard at gmail.com>
-.. versionadded:: 3.2
.. sectionauthor:: Steven Bethard <steven.bethard at gmail.com>
+**Source code:** :source:`Lib/argparse.py`
+
+.. versionadded:: 3.2
+
+--------------
The :mod:`argparse` module makes it easy to write user friendly command line
interfaces. The program defines what arguments it requires, and :mod:`argparse`
Modified: python/branches/py3k/Doc/library/bdb.rst
==============================================================================
--- python/branches/py3k/Doc/library/bdb.rst (original)
+++ python/branches/py3k/Doc/library/bdb.rst Thu Jan 27 02:20:32 2011
@@ -4,6 +4,10 @@
.. module:: bdb
:synopsis: Debugger framework.
+**Source code:** :source:`Lib/bdb.py`
+
+--------------
+
The :mod:`bdb` module handles basic debugger functions, like setting breakpoints
or managing execution via the debugger.
Modified: python/branches/py3k/Doc/library/cgi.rst
==============================================================================
--- python/branches/py3k/Doc/library/cgi.rst (original)
+++ python/branches/py3k/Doc/library/cgi.rst Thu Jan 27 02:20:32 2011
@@ -13,6 +13,10 @@
single: URL
single: Common Gateway Interface
+**Source code:** :source:`Lib/cgi.py`
+
+--------------
+
Support module for Common Gateway Interface (CGI) scripts.
This module defines a number of utilities for use by CGI scripts written in
Modified: python/branches/py3k/Doc/library/collections.rst
==============================================================================
--- python/branches/py3k/Doc/library/collections.rst (original)
+++ python/branches/py3k/Doc/library/collections.rst Thu Jan 27 02:20:32 2011
@@ -12,7 +12,7 @@
import itertools
__name__ = '<doctest>'
-**Source code:** :source:`Lib/collections.py`
+**Source code:** :source:`Lib/collections.py` and :source:`Lib/_abcoll.py`
--------------
Modified: python/branches/py3k/Doc/library/colorsys.rst
==============================================================================
--- python/branches/py3k/Doc/library/colorsys.rst (original)
+++ python/branches/py3k/Doc/library/colorsys.rst Thu Jan 27 02:20:32 2011
@@ -5,6 +5,9 @@
:synopsis: Conversion functions between RGB and other color systems.
.. sectionauthor:: David Ascher <da at python.net>
+**Source code:** :source:`Lib/colorsys.py`
+
+--------------
The :mod:`colorsys` module defines bidirectional conversions of color values
between colors expressed in the RGB (Red Green Blue) color space used in
Modified: python/branches/py3k/Doc/library/concurrent.futures.rst
==============================================================================
--- python/branches/py3k/Doc/library/concurrent.futures.rst (original)
+++ python/branches/py3k/Doc/library/concurrent.futures.rst Thu Jan 27 02:20:32 2011
@@ -4,8 +4,13 @@
.. module:: concurrent.futures
:synopsis: Execute computations concurrently using threads or processes.
+**Source code:** :source:`Lib/concurrent/futures/thread.py`
+and :source:`Lib/concurrent/futures/process.py`
+
.. versionadded:: 3.2
+--------------
+
The :mod:`concurrent.futures` module provides a high-level interface for
asynchronously executing callables.
Modified: python/branches/py3k/Doc/library/html.entities.rst
==============================================================================
--- python/branches/py3k/Doc/library/html.entities.rst (original)
+++ python/branches/py3k/Doc/library/html.entities.rst Thu Jan 27 02:20:32 2011
@@ -5,6 +5,9 @@
:synopsis: Definitions of HTML general entities.
.. sectionauthor:: Fred L. Drake, Jr. <fdrake at acm.org>
+**Source code:** :source:`Lib/html/entities.py`
+
+--------------
This module defines three dictionaries, ``name2codepoint``, ``codepoint2name``,
and ``entitydefs``. ``entitydefs`` is used to provide the :attr:`entitydefs`
Modified: python/branches/py3k/Doc/library/html.parser.rst
==============================================================================
--- python/branches/py3k/Doc/library/html.parser.rst (original)
+++ python/branches/py3k/Doc/library/html.parser.rst Thu Jan 27 02:20:32 2011
@@ -9,6 +9,10 @@
single: HTML
single: XHTML
+**Source code:** :source:`Lib/html/parser.py`
+
+--------------
+
This module defines a class :class:`HTMLParser` which serves as the basis for
parsing text files formatted in HTML (HyperText Mark-up Language) and XHTML.
Modified: python/branches/py3k/Doc/library/html.rst
==============================================================================
--- python/branches/py3k/Doc/library/html.rst (original)
+++ python/branches/py3k/Doc/library/html.rst Thu Jan 27 02:20:32 2011
@@ -6,6 +6,9 @@
.. versionadded:: 3.2
+**Source code:** :source:`Lib/html/__init__.py`
+
+--------------
This module defines utilities to manipulate HTML.
Modified: python/branches/py3k/Doc/library/pyclbr.rst
==============================================================================
--- python/branches/py3k/Doc/library/pyclbr.rst (original)
+++ python/branches/py3k/Doc/library/pyclbr.rst Thu Jan 27 02:20:32 2011
@@ -5,6 +5,9 @@
:synopsis: Supports information extraction for a Python class browser.
.. sectionauthor:: Fred L. Drake, Jr. <fdrake at acm.org>
+**Source code:** :source:`Lib/pyclbr.py`
+
+--------------
The :mod:`pyclbr` module can be used to determine some limited information
about the classes, methods and top-level functions defined in a module. The
Modified: python/branches/py3k/Doc/library/runpy.rst
==============================================================================
--- python/branches/py3k/Doc/library/runpy.rst (original)
+++ python/branches/py3k/Doc/library/runpy.rst Thu Jan 27 02:20:32 2011
@@ -5,6 +5,9 @@
:synopsis: Locate and run Python modules without importing them first.
.. moduleauthor:: Nick Coghlan <ncoghlan at gmail.com>
+**Source code:** :source:`Lib/runpy.py`
+
+--------------
The :mod:`runpy` module is used to locate and run Python modules without
importing them first. Its main use is to implement the :option:`-m` command
Modified: python/branches/py3k/Doc/library/shlex.rst
==============================================================================
--- python/branches/py3k/Doc/library/shlex.rst (original)
+++ python/branches/py3k/Doc/library/shlex.rst Thu Jan 27 02:20:32 2011
@@ -8,6 +8,9 @@
.. sectionauthor:: Eric S. Raymond <esr at snark.thyrsus.com>
.. sectionauthor:: Gustavo Niemeyer <niemeyer at conectiva.com>
+**Source code:** :source:`Lib/shlex.py`
+
+--------------
The :class:`shlex` class makes it easy to write lexical analyzers for simple
syntaxes resembling that of the Unix shell. This will often be useful for
Modified: python/branches/py3k/Doc/library/symbol.rst
==============================================================================
--- python/branches/py3k/Doc/library/symbol.rst (original)
+++ python/branches/py3k/Doc/library/symbol.rst Thu Jan 27 02:20:32 2011
@@ -5,6 +5,9 @@
:synopsis: Constants representing internal nodes of the parse tree.
.. sectionauthor:: Fred L. Drake, Jr. <fdrake at acm.org>
+**Source code:** :source:`Lib/symbol.py`
+
+--------------
This module provides constants which represent the numeric values of internal
nodes of the parse tree. Unlike most Python constants, these use lower-case
Modified: python/branches/py3k/Doc/library/sysconfig.rst
==============================================================================
--- python/branches/py3k/Doc/library/sysconfig.rst (original)
+++ python/branches/py3k/Doc/library/sysconfig.rst Thu Jan 27 02:20:32 2011
@@ -5,10 +5,15 @@
:synopsis: Python's configuration information
.. moduleauthor:: Tarek Ziade <tarek at ziade.org>
.. sectionauthor:: Tarek Ziade <tarek at ziade.org>
-.. versionadded:: 3.2
.. index::
single: configuration information
+**Source code:** :source:`Lib/sysconfig.py`
+
+.. versionadded:: 3.2
+
+--------------
+
The :mod:`sysconfig` module provides access to Python's configuration
information like the list of installation paths and the configuration variables
relevant for the current platform.
Modified: python/branches/py3k/Doc/library/tabnanny.rst
==============================================================================
--- python/branches/py3k/Doc/library/tabnanny.rst (original)
+++ python/branches/py3k/Doc/library/tabnanny.rst Thu Jan 27 02:20:32 2011
@@ -9,6 +9,10 @@
.. rudimentary documentation based on module comments
+**Source code:** :source:`Lib/tabnanny.py`
+
+--------------
+
For the time being this module is intended to be called as a script. However it
is possible to import it into an IDE and use the function :func:`check`
described below.
Modified: python/branches/py3k/Doc/library/tarfile.rst
==============================================================================
--- python/branches/py3k/Doc/library/tarfile.rst (original)
+++ python/branches/py3k/Doc/library/tarfile.rst Thu Jan 27 02:20:32 2011
@@ -8,6 +8,9 @@
.. moduleauthor:: Lars Gustäbel <lars at gustaebel.de>
.. sectionauthor:: Lars Gustäbel <lars at gustaebel.de>
+**Source code:** :source:`Lib/tarfile.py`
+
+--------------
The :mod:`tarfile` module makes it possible to read and write tar
archives, including those using gzip or bz2 compression.
Modified: python/branches/py3k/Doc/library/tempfile.rst
==============================================================================
--- python/branches/py3k/Doc/library/tempfile.rst (original)
+++ python/branches/py3k/Doc/library/tempfile.rst Thu Jan 27 02:20:32 2011
@@ -12,6 +12,10 @@
pair: temporary; file name
pair: temporary; file
+**Source code:** :source:`Lib/tempfile.py`
+
+--------------
+
This module generates temporary files and directories. It works on all
supported platforms. It provides three new functions,
:func:`NamedTemporaryFile`, :func:`mkstemp`, and :func:`mkdtemp`, which should
Modified: python/branches/py3k/Doc/library/timeit.rst
==============================================================================
--- python/branches/py3k/Doc/library/timeit.rst (original)
+++ python/branches/py3k/Doc/library/timeit.rst Thu Jan 27 02:20:32 2011
@@ -9,6 +9,10 @@
single: Benchmarking
single: Performance
+**Source code:** :source:`Lib/timeit.py`
+
+--------------
+
This module provides a simple way to time small bits of Python code. It has both
command line as well as callable interfaces. It avoids a number of common traps
for measuring execution times. See also Tim Peters' introduction to the
Modified: python/branches/py3k/Doc/library/token.rst
==============================================================================
--- python/branches/py3k/Doc/library/token.rst (original)
+++ python/branches/py3k/Doc/library/token.rst Thu Jan 27 02:20:32 2011
@@ -5,6 +5,9 @@
:synopsis: Constants representing terminal nodes of the parse tree.
.. sectionauthor:: Fred L. Drake, Jr. <fdrake at acm.org>
+**Source code:** :source:`Lib/token.py`
+
+--------------
This module provides constants which represent the numeric values of leaf nodes
of the parse tree (terminal tokens). Refer to the file :file:`Grammar/Grammar`
Modified: python/branches/py3k/Doc/library/types.rst
==============================================================================
--- python/branches/py3k/Doc/library/types.rst (original)
+++ python/branches/py3k/Doc/library/types.rst Thu Jan 27 02:20:32 2011
@@ -4,6 +4,9 @@
.. module:: types
:synopsis: Names for built-in types.
+**Source code:** :source:`Lib/types.py`
+
+--------------
This module defines names for some object types that are used by the standard
Python interpreter, but not exposed as builtins like :class:`int` or
More information about the Python-checkins
mailing list