Turn section references into proper cross-references.

This commit is contained in:
Georg Brandl 2008-06-22 09:05:29 +00:00
parent 74a6ba8f70
commit 0ba92b24b7
3 changed files with 12 additions and 15 deletions

View File

@ -363,8 +363,7 @@ These functions create new file objects. (See also :func:`open`.)
.. deprecated:: 2.6 .. deprecated:: 2.6
This function is obsolete. Use the :mod:`subprocess` module. Check This function is obsolete. Use the :mod:`subprocess` module. Check
specially the *Replacing Older Functions with the subprocess Module* especially the :ref:`subprocess-replacements` section.
section in that documentation page.
.. versionchanged:: 2.0 .. versionchanged:: 2.0
This function worked unreliably under Windows in earlier versions of Python. This function worked unreliably under Windows in earlier versions of Python.
@ -413,9 +412,8 @@ functions, see :ref:`popen2-flow-control`.
child_stdout)``. child_stdout)``.
.. deprecated:: 2.6 .. deprecated:: 2.6
All of the :func:`popen\*` functions are obsolete. Use the :mod:`subprocess` This function is obsolete. Use the :mod:`subprocess` module. Check
module. Check specially the *Replacing Older Functions with the especially the :ref:`subprocess-replacements` section.
subprocess Module* section in that documentation page.
Availability: Macintosh, Unix, Windows. Availability: Macintosh, Unix, Windows.
@ -428,9 +426,8 @@ functions, see :ref:`popen2-flow-control`.
child_stdout, child_stderr)``. child_stdout, child_stderr)``.
.. deprecated:: 2.6 .. deprecated:: 2.6
All of the :func:`popen\*` functions are obsolete. Use the :mod:`subprocess` This function is obsolete. Use the :mod:`subprocess` module. Check
module. Check specially the *Replacing Older Functions with the especially the :ref:`subprocess-replacements` section.
subprocess Module* section in that documentation page.
Availability: Macintosh, Unix, Windows. Availability: Macintosh, Unix, Windows.
@ -443,9 +440,8 @@ functions, see :ref:`popen2-flow-control`.
child_stdout_and_stderr)``. child_stdout_and_stderr)``.
.. deprecated:: 2.6 .. deprecated:: 2.6
All of the :func:`popen\*` functions are obsolete. Use the :mod:`subprocess` This function is obsolete. Use the :mod:`subprocess` module. Check
module. Check specially the *Replacing Older Functions with the especially the :ref:`subprocess-replacements` section.
subprocess Module* section in that documentation page.
Availability: Macintosh, Unix, Windows. Availability: Macintosh, Unix, Windows.
@ -1848,8 +1844,8 @@ written in Python, such as a mail server's external command delivery program.
The :mod:`subprocess` module provides more powerful facilities for spawning new The :mod:`subprocess` module provides more powerful facilities for spawning new
processes and retrieving their results; using that module is preferable to using processes and retrieving their results; using that module is preferable to using
this function. Check specially the *Replacing Older Functions with the this function. Use the :mod:`subprocess` module. Check especially the
subprocess Module* section in that documentation page. :ref:`subprocess-replacements` section.
.. function:: times() .. function:: times()

View File

@ -10,8 +10,7 @@
.. deprecated:: 2.6 .. deprecated:: 2.6
This module is obsolete. Use the :mod:`subprocess` module. Check This module is obsolete. Use the :mod:`subprocess` module. Check
specially the *Replacing Older Functions with the subprocess Module* especially the :ref:`subprocess-replacements` section.
section in that documentation page.
This module allows you to spawn processes and connect to their This module allows you to spawn processes and connect to their
input/output/error pipes and obtain their return codes under Unix and Windows. input/output/error pipes and obtain their return codes under Unix and Windows.

View File

@ -273,6 +273,8 @@ The following attributes are also available:
``N`` (Unix only). ``N`` (Unix only).
.. _subprocess-replacements:
Replacing Older Functions with the subprocess Module Replacing Older Functions with the subprocess Module
---------------------------------------------------- ----------------------------------------------------