diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-02-04 22:59:56 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-02-04 22:59:56 (GMT) |
commit | ada0d182bd97cf1fa94e7843647078e418084cfa (patch) | |
tree | fa306ab007852e47453f0b2afc8b2b9db1578bee | |
parent | 71a92a844a55d55a753e7bc6cbf1088b5857adc9 (diff) | |
download | cpython-ada0d182bd97cf1fa94e7843647078e418084cfa.zip cpython-ada0d182bd97cf1fa94e7843647078e418084cfa.tar.gz cpython-ada0d182bd97cf1fa94e7843647078e418084cfa.tar.bz2 |
SF bug 1415455, fix typo in module name
-rw-r--r-- | Doc/lib/libsubprocess.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libsubprocess.tex b/Doc/lib/libsubprocess.tex index c1eb7d4..792996b 100644 --- a/Doc/lib/libsubprocess.tex +++ b/Doc/lib/libsubprocess.tex @@ -371,7 +371,7 @@ p = Popen(["mycmd", "myarg"], bufsize=bufsize, (child_stdout, child_stdin) = (p.stdout, p.stdin) \end{verbatim} -The popen2.Popen3 and popen3.Popen4 basically works as subprocess.Popen, +The popen2.Popen3 and popen2.Popen4 basically works as subprocess.Popen, except that: \begin{itemize} |