]> granicus.if.org Git - python/commitdiff
Merged revisions 81163 via svnmerge from
authorVictor Stinner <victor.stinner@haypocalc.com>
Fri, 14 May 2010 14:30:11 +0000 (14:30 +0000)
committerVictor Stinner <victor.stinner@haypocalc.com>
Fri, 14 May 2010 14:30:11 +0000 (14:30 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81163 | victor.stinner | 2010-05-14 16:20:07 +0200 (ven., 14 mai 2010) | 2 lines

  Doc: replace PEP xxx by :pep:`xxx` to create a link on the PEP
........

Doc/howto/cporting.rst
Doc/library/pkgutil.rst
Doc/library/runpy.rst
Doc/library/threading.rst
Doc/library/wsgiref.rst
Doc/library/zipimport.rst

index 9b66650c3885599fedcd5a2a1e03ab4537186718..c0b59338ba21dbb004c5b3fa6a1aa9bd06a5fcca 100644 (file)
@@ -118,7 +118,7 @@ can also be used in some cases. ::
 Module initialization and state
 ===============================
 
-Python 3.0 has a revamped extension module initialization system.  (See PEP
+Python 3.0 has a revamped extension module initialization system.  (See
 :pep:`3121`.)  Instead of storing module state in globals, they should be stored
 in an interpreter specific structure.  Creating modules that act correctly in
 both 2.x and 3.0 is tricky.  The following simple example demonstrates how. ::
index f1692639f7f12ecfc29d2132aa6422eb86988c72..518937778d95091b6c45d317042fbe22d5fd932e 100644 (file)
@@ -45,7 +45,7 @@ This module provides functions to manipulate packages:
 
    Get a resource from a package.
 
-   This is a wrapper for the PEP 302 loader :func:`get_data` API. The package
+   This is a wrapper for the :pep:`302` loader :func:`get_data` API. The package
    argument should be the name of a package, in standard module format
    (foo.bar). The resource argument should be in the form of a relative
    filename, using ``/`` as the path separator. The parent directory name
@@ -60,5 +60,5 @@ This module provides functions to manipulate packages:
        d = os.path.dirname(sys.modules[package].__file__)
        data = open(os.path.join(d, resource), 'rb').read()
 
-   If the package cannot be located or loaded, or it uses a PEP 302 loader
+   If the package cannot be located or loaded, or it uses a :pep:`302` loader
    which does not support :func:`get_data`, then None is returned.
index cfaab94f1231e6047b996230ba8bb5fec4a3d216..a0f30351951ba80f8f1b8a5d2d447840a9c8d2ad 100644 (file)
@@ -25,7 +25,7 @@ The :mod:`runpy` module provides a single function:
 
    Execute the code of the specified module and return the resulting module globals
    dictionary. The module's code is first located using the standard import
-   mechanism (refer to PEP 302 for details) and then executed in a fresh module
+   mechanism (refer to :pep:`302` for details) and then executed in a fresh module
    namespace.
 
    The optional dictionary argument *init_globals* may be used to pre-populate the
@@ -41,7 +41,7 @@ The :mod:`runpy` module provides a single function:
    ``__name__`` is set to *run_name* if this optional argument is supplied, and the
    *mod_name* argument otherwise.
 
-   ``__loader__`` is set to the PEP 302 module loader used to retrieve the code for
+   ``__loader__`` is set to the :pep:`302` module loader used to retrieve the code for
    the module (This loader may be a wrapper around the standard import mechanism).
 
    ``__file__`` is set to the name provided by the module loader. If the loader
index 1440215394b6f053aca51c6faad4ea92b60f71ef..94f75ed4a3ad1cf19567d8ca92d65b848f59e412 100644 (file)
@@ -14,7 +14,7 @@ The :mod:`dummy_threading` module is provided for situations where
 
 .. note::
 
-   Starting with Python 2.6, this module provides PEP 8 compliant aliases and
+   Starting with Python 2.6, this module provides :pep:`8` compliant aliases and
    properties to replace the ``camelCase`` names that were inspired by Java's
    threading API. This updated API is compatible with that of the
    :mod:`multiprocessing` module. However, no schedule has been set for the
index a97eaecbbf233b0f8ea3920f0a65e9c0fd4bf540..517fc3849bb2dd1e079625fab23d567a5bc02fbf 100644 (file)
@@ -712,7 +712,7 @@ This is a working "Hello World" WSGI application::
    # use a function (note that you're not limited to a function, you can
    # use a class for example). The first argument passed to the function
    # is a dictionary containing CGI-style envrironment variables and the
-   # second variable is the callable object (see PEP333)
+   # second variable is the callable object (see :pep:`333`)
    def hello_world_app(environ, start_response):
        status = '200 OK' # HTTP Status
        headers = [('Content-type', 'text/plain')] # HTTP Headers
index 8e6b132cf45c89e5900328b4559e1444e7d623d4..4ce9a3543c1fe0d7b21acbed4301fd500927679a 100644 (file)
@@ -41,12 +41,12 @@ ZIP archives with an archive comment are currently not supported.
       Documentation on the ZIP file format by Phil Katz, the creator of the format and
       algorithms used.
 
-   :pep:`0273` - Import Modules from Zip Archives
+   :pep:`273` - Import Modules from Zip Archives
       Written by James C. Ahlstrom, who also provided an implementation. Python 2.3
       follows the specification in PEP 273, but uses an implementation written by Just
       van Rossum that uses the import hooks described in PEP 302.
 
-   :pep:`0302` - New Import Hooks
+   :pep:`302` - New Import Hooks
       The PEP to add the import hooks that help this module work.