diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-08 08:07:10 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-08 08:07:10 (GMT) |
commit | 402f75d966bd525ea3ee0c7129ecba36d19a0939 (patch) | |
tree | 14a19485ce233f39b391f4486ac7fe58f4446e16 /Doc/library/subprocess.rst | |
parent | 6c5f5210be9f68252b72d7b5e8dc2bde20d90c9d (diff) | |
download | cpython-402f75d966bd525ea3ee0c7129ecba36d19a0939.zip cpython-402f75d966bd525ea3ee0c7129ecba36d19a0939.tar.gz cpython-402f75d966bd525ea3ee0c7129ecba36d19a0939.tar.bz2 |
#10385: use the mod role in subprocess docs.
Diffstat (limited to 'Doc/library/subprocess.rst')
-rw-r--r-- | Doc/library/subprocess.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index e260a1f..fc456a1 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 |