diff options
author | Georg Brandl <georg@python.org> | 2008-12-05 07:52:26 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-12-05 07:52:26 +0000 |
commit | 5b5f273640319295d997a95071f3ded26a99ba29 (patch) | |
tree | 3e669528da9c3e33366f5008de568094d5abda77 | |
parent | b46f0d788cc288238c7ef8064553e5231e131879 (diff) | |
download | cpython-git-5b5f273640319295d997a95071f3ded26a99ba29.tar.gz |
#4409: fix asterisks looking like footnotes.
-rw-r--r-- | Doc/library/subprocess.rst | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index 96b7443d0f..1a0f134c52 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -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:: |