summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-11-08 10:11:22 +0200
committerEzio Melotti <ezio.melotti@gmail.com>2012-11-08 10:11:22 +0200
commit2e3b8667a9fcc0507b0060c8f4ceedd214bd1e27 (patch)
treebd4de800cc1dd352b6e7a9884f0a6165e50e80a2
parenta35283195c8a126cf7f4bed558f8ee758023737d (diff)
parent1b6920818b311bba48191e9025c06390f5867c37 (diff)
downloadcpython-2e3b8667a9fcc0507b0060c8f4ceedd214bd1e27.tar.gz
Merge heads.
-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 e260a1ffbe..fc456a1dfb 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
@@ -731,8 +731,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.
@@ -748,7 +748,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