From: Neal Norwitz Date: Fri, 11 May 2007 06:23:43 +0000 (+0000) Subject: Fix typo in docstring (the module is popen2, not 3). X-Git-Tag: v2.5.2c1~302 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=914c98bfe336fa07686bd3947ad713fa3fcf80a0;p=thirdparty%2FPython%2Fcpython.git Fix typo in docstring (the module is popen2, not 3). --- diff --git a/Lib/subprocess.py b/Lib/subprocess.py index 1e3d84b6328e..5b6fb1828907 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