]> granicus.if.org Git - python/commitdiff
More source links.
authorRaymond Hettinger <python@rcn.com>
Thu, 27 Jan 2011 01:20:32 +0000 (01:20 +0000)
committerRaymond Hettinger <python@rcn.com>
Thu, 27 Jan 2011 01:20:32 +0000 (01:20 +0000)
20 files changed:
Doc/library/argparse.rst
Doc/library/bdb.rst
Doc/library/cgi.rst
Doc/library/collections.rst
Doc/library/colorsys.rst
Doc/library/concurrent.futures.rst
Doc/library/html.entities.rst
Doc/library/html.parser.rst
Doc/library/html.rst
Doc/library/pyclbr.rst
Doc/library/runpy.rst
Doc/library/shlex.rst
Doc/library/symbol.rst
Doc/library/sysconfig.rst
Doc/library/tabnanny.rst
Doc/library/tarfile.rst
Doc/library/tempfile.rst
Doc/library/timeit.rst
Doc/library/token.rst
Doc/library/types.rst

index 6399ce7a6118aabf8c84845d6fbf29c6a4aa5a32..9a65adad44777fa7169f47f34174aa188131cc2f 100644 (file)
@@ -4,9 +4,13 @@
 .. module:: argparse
    :synopsis: Command-line option and argument parsing library.
 .. moduleauthor:: Steven Bethard <steven.bethard@gmail.com>
-.. versionadded:: 3.2
 .. sectionauthor:: Steven Bethard <steven.bethard@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`
index 1609c55fea38e1e449e2bb57c225afa9e2b62e25..07376024b811e3fb6eb39ea5a23f859058e22add 100644 (file)
@@ -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.
 
index 8c75517b5743f17995f1bdab52960aa6d3fcfa7b..1e2498d4609237aec1595f82b9c7c9790708d371 100644 (file)
    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
index 4096cbbad598f27365ab26e96c04ce157adc101a..4a92b052aa5a47cb7d558a1762c48c8ce2ccece3 100644 (file)
@@ -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`
 
 --------------
 
index 2cbc704db1cefd73d45b9e94c2f95c505834f891..dbab7063e106fbda0e19f0b2d2d689ab9d217285 100644 (file)
@@ -5,6 +5,9 @@
    :synopsis: Conversion functions between RGB and other color systems.
 .. sectionauthor:: David Ascher <da@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
index aeb792e4948466b8a2f48951f98af4fe136297f6..0cb170b4a6b2a9b8770d3fda7370ad46123ad761 100644 (file)
@@ -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.
 
index aa67bae7a329a78cff259806db2e1f1fe966344b..239ae5054185c1cac4636b89f56e489e0ddee977 100644 (file)
@@ -5,6 +5,9 @@
    :synopsis: Definitions of HTML general entities.
 .. sectionauthor:: Fred L. Drake, Jr. <fdrake@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`
index e415700b3924d3c5416020c67a65516b0b54847c..8a0416ea2f4eec4e2a6d0a247ed19880580ce7bf 100644 (file)
@@ -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.
 
index 2c42cf852b577f0fa7c6924f98d1183fd80a7561..0063db60cd3302c80cff4cae883cdd82a80144eb 100644 (file)
@@ -6,6 +6,9 @@
 
 .. versionadded:: 3.2
 
+**Source code:** :source:`Lib/html/__init__.py`
+
+--------------
 
 This module defines utilities to manipulate HTML.
 
index 11a0b6d37cb63531c22fde31c74992ae2b4c6ca7..d4a76a647977cb4f117146ef7264ca0fc08146eb 100644 (file)
@@ -5,6 +5,9 @@
    :synopsis: Supports information extraction for a Python class browser.
 .. sectionauthor:: Fred L. Drake, Jr. <fdrake@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
index 10e5ebcec2da4801ad968fdecf97eb45a59708d6..f7c77f6b8d79cdcbc71d5af52da92140a7bb60d9 100644 (file)
@@ -5,6 +5,9 @@
    :synopsis: Locate and run Python modules without importing them first.
 .. moduleauthor:: Nick Coghlan <ncoghlan@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
index 0bc99fdc553bdc4b8fcfd75ffbf95dc5f9ac7ac8..03c9f98a04f5eb562e0feeb04adb61c84c1dfd03 100644 (file)
@@ -8,6 +8,9 @@
 .. sectionauthor:: Eric S. Raymond <esr@snark.thyrsus.com>
 .. sectionauthor:: Gustavo Niemeyer <niemeyer@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
index 5134d47269703578d4f9aa5ba6c6c80235eb3ddd..75a47923a80b6eaa167fe52a72011d7f9aa69def 100644 (file)
@@ -5,6 +5,9 @@
    :synopsis: Constants representing internal nodes of the parse tree.
 .. sectionauthor:: Fred L. Drake, Jr. <fdrake@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
index 773480b62b5dc82d616f2befc2868f789873bc3d..1e89bd02eed446cad5124e6f02d6f0a030a39e34 100644 (file)
@@ -5,10 +5,15 @@
    :synopsis: Python's configuration information
 .. moduleauthor:: Tarek Ziade <tarek@ziade.org>
 .. sectionauthor:: Tarek Ziade <tarek@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.
index 549ce368b71350f4b4234b131896b28071d25c22..4f3e705cab62a3ac3e102cc9e5580553064dce4c 100644 (file)
@@ -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.
index d578a79421375fe5b1aee2b864bdb0dfdc527121..9b7071bf69f307def4baec10faa18719e2b00ba6 100644 (file)
@@ -8,6 +8,9 @@
 .. moduleauthor:: Lars Gustäbel <lars@gustaebel.de>
 .. sectionauthor:: Lars Gustäbel <lars@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.
index 5caea677e3a2f098c9426c05d927ffd0aee41071..1e0a31fdcf7a3c865b6c26f217a9aed6de50244a 100644 (file)
    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
index 4a0b9c257b1c35a78d4ebb5a17d639cd57ed53ef..a03e40e1b32881027c00ad1cab9a478613bfce31 100644 (file)
@@ -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
index 991762f4e62dd94aef44ffe871b8351840763586..4b98eac92811def3cbb321eb035532866df1abea 100644 (file)
@@ -5,6 +5,9 @@
    :synopsis: Constants representing terminal nodes of the parse tree.
 .. sectionauthor:: Fred L. Drake, Jr. <fdrake@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`
index 7caecaf4f6fca5479b66c39eac057a51ffa94f50..d4a76b611bd08a95e5bcfafb5affcd7e2e020e71 100644 (file)
@@ -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