]> granicus.if.org Git - python/commitdiff
Fix typo in docstring (the module is popen2, not 3).
authorNeal Norwitz <nnorwitz@gmail.com>
Fri, 11 May 2007 06:23:01 +0000 (06:23 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Fri, 11 May 2007 06:23:01 +0000 (06:23 +0000)
Lib/subprocess.py

index 11fc4396496dd1e1db0ee25357b7438906a9220d..6ecff25dab792778e323f7d608b9f63718d23120 100644 (file)
@@ -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