]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#4409: fix asterisks looking like footnotes.
authorGeorg Brandl <georg@python.org>
Fri, 5 Dec 2008 07:52:26 +0000 (07:52 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 5 Dec 2008 07:52:26 +0000 (07:52 +0000)
Doc/library/subprocess.rst

index 96b7443d0f629ce27ab055ceb1b87969d0914895..1a0f134c5278547cae9b8e4d9e8fdb57860aca7b 100644 (file)
@@ -382,8 +382,8 @@ A more realistic example would look like this::
        print >>sys.stderr, "Execution failed:", e
 
 
-Replacing os.spawn\*
-^^^^^^^^^^^^^^^^^^^^
+Replacing the os.spawn family
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 P_NOWAIT example::
 
@@ -410,8 +410,8 @@ Environment example::
    Popen(["/bin/mycmd", "myarg"], env={"PATH": "/usr/bin"})
 
 
-Replacing os.popen\*
-^^^^^^^^^^^^^^^^^^^^
+Replacing os.popen, os.popen2, os.popen3
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 ::
 
@@ -454,8 +454,8 @@ Replacing os.popen\*
    (child_stdin, child_stdout_and_stderr) = (p.stdin, p.stdout)
 
 
-Replacing popen2.\*
-^^^^^^^^^^^^^^^^^^^
+Replacing functions from the popen2 module
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 .. note::