Index: Doc/library/subprocess.rst =================================================================== --- Doc/library/subprocess.rst (revision 86303) +++ Doc/library/subprocess.rst (working copy) @@ -22,8 +22,8 @@ :pep:`324` -- PEP proposing the subprocess module -Using the subprocess Module ---------------------------- +Using the :mod:`subprocess` Module +---------------------------------- This module defines one class called :class:`Popen`: @@ -448,7 +448,7 @@ .. _subprocess-replacements: -Replacing Older Functions with the subprocess Module +Replacing Older Functions with the :mod:`subprocess` Module ---------------------------------------------------- In this section, "a ==> b" means that b can be used as a replacement for a. @@ -458,7 +458,7 @@ All functions in this section fail (more or less) silently if the executed program cannot be found; this module raises an :exc:`OSError` exception. -In the following examples, we assume that the subprocess module is imported with +In the following examples, we assume that the :mod:`subprocess` module is imported with "from subprocess import \*".