.. deprecated:: 2.6
This function is obsolete. Use the :mod:`subprocess` module. Check
- specially the *Replacing Older Functions with the subprocess Module*
- section in that documentation page.
+ especially the :ref:`subprocess-replacements` section.
.. versionchanged:: 2.0
This function worked unreliably under Windows in earlier versions of Python.
child_stdout)``.
.. deprecated:: 2.6
- All of the :func:`popen\*` functions are obsolete. Use the :mod:`subprocess`
- module. Check specially the *Replacing Older Functions with the
- subprocess Module* section in that documentation page.
+ This function is obsolete. Use the :mod:`subprocess` module. Check
+ especially the :ref:`subprocess-replacements` section.
Availability: Macintosh, Unix, Windows.
child_stdout, child_stderr)``.
.. deprecated:: 2.6
- All of the :func:`popen\*` functions are obsolete. Use the :mod:`subprocess`
- module. Check specially the *Replacing Older Functions with the
- subprocess Module* section in that documentation page.
+ This function is obsolete. Use the :mod:`subprocess` module. Check
+ especially the :ref:`subprocess-replacements` section.
Availability: Macintosh, Unix, Windows.
child_stdout_and_stderr)``.
.. deprecated:: 2.6
- All of the :func:`popen\*` functions are obsolete. Use the :mod:`subprocess`
- module. Check specially the *Replacing Older Functions with the
- subprocess Module* section in that documentation page.
+ This function is obsolete. Use the :mod:`subprocess` module. Check
+ especially the :ref:`subprocess-replacements` section.
Availability: Macintosh, Unix, Windows.
The :mod:`subprocess` module provides more powerful facilities for spawning new
processes and retrieving their results; using that module is preferable to using
- this function. Check specially the *Replacing Older Functions with the
- subprocess Module* section in that documentation page.
+ this function. Use the :mod:`subprocess` module. Check especially the
+ :ref:`subprocess-replacements` section.
.. function:: times()
.. deprecated:: 2.6
This module is obsolete. Use the :mod:`subprocess` module. Check
- specially the *Replacing Older Functions with the subprocess Module*
- section in that documentation page.
+ especially the :ref:`subprocess-replacements` section.
This module allows you to spawn processes and connect to their
input/output/error pipes and obtain their return codes under Unix and Windows.