diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-05-11 06:23:01 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-05-11 06:23:01 (GMT) |
commit | aa87fb6be40592be934c29e236c7eeca3399745c (patch) | |
tree | e5f418a6e43be1f81c3e003389f35426a5babc3c /Lib | |
parent | d9841039dbd0e37746d46f6e46ce1d82b85a21b3 (diff) | |
download | cpython-aa87fb6be40592be934c29e236c7eeca3399745c.zip cpython-aa87fb6be40592be934c29e236c7eeca3399745c.tar.gz cpython-aa87fb6be40592be934c29e236c7eeca3399745c.tar.bz2 |
Fix typo in docstring (the module is popen2, not 3).
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/subprocess.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/subprocess.py b/Lib/subprocess.py index 11fc439..6ecff25 100644 --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -340,7 +340,7 @@ p = Popen(["mycmd", "myarg"], bufsize=bufsize, stdin=PIPE, stdout=PIPE, close_fds=True) (child_stdout, child_stdin) = (p.stdout, p.stdin) -The popen2.Popen3 and popen3.Popen4 basically works as subprocess.Popen, +The popen2.Popen3 and popen2.Popen4 basically works as subprocess.Popen, except that: * subprocess.Popen raises an exception if the execution fails |