summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-11-08 08:09:24 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-11-08 08:09:24 (GMT)
commitf62f3a413516d03d13161138b9d0958f19789695 (patch)
tree95544fa02531824bfc6d1d7c61b76b2057ec4613
parentd2d3aa20382339495c4e26522abc5db1a77fd0b2 (diff)
parent60e22b9c5d83781470d5a1ab26cb482b53a3e9d7 (diff)
downloadcpython-f62f3a413516d03d13161138b9d0958f19789695.zip
cpython-f62f3a413516d03d13161138b9d0958f19789695.tar.gz
cpython-f62f3a413516d03d13161138b9d0958f19789695.tar.bz2
#10385: merge with 3.3.
-rw-r--r--Doc/library/subprocess.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
index 34fdf10..b09c642 100644
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -22,8 +22,8 @@ modules and functions can be found in the following sections.
:pep:`324` -- PEP proposing the subprocess module
-Using the subprocess Module
----------------------------
+Using the :mod:`subprocess` Module
+----------------------------------
The recommended approach to invoking subprocesses is to use the following
convenience functions for all use cases they can handle. For more advanced
@@ -839,8 +839,8 @@ The :mod:`subprocess` module exposes the following constants.
.. _subprocess-replacements:
-Replacing Older Functions with the subprocess Module
-----------------------------------------------------
+Replacing Older Functions with the :mod:`subprocess` Module
+-----------------------------------------------------------
In this section, "a becomes b" means that b can be used as a replacement for a.
@@ -856,7 +856,7 @@ In this section, "a becomes b" means that b can be used as a replacement for a.
the raised exception.
In the following examples, we assume that the relevant functions have already
-been imported from the subprocess module.
+been imported from the :mod:`subprocess` module.
Replacing /bin/sh shell backquote