[Python-checkins] r55243 - python/branches/release25-maint/Lib/subprocess.py

neal.norwitz python-checkins at python.org
Fri May 11 08:23:45 CEST 2007


Author: neal.norwitz
Date: Fri May 11 08:23:43 2007
New Revision: 55243

Modified:
   python/branches/release25-maint/Lib/subprocess.py
Log:
Fix typo in docstring (the module is popen2, not 3).

Modified: python/branches/release25-maint/Lib/subprocess.py
==============================================================================
--- python/branches/release25-maint/Lib/subprocess.py	(original)
+++ python/branches/release25-maint/Lib/subprocess.py	Fri May 11 08:23:43 2007
@@ -340,7 +340,7 @@
           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


More information about the Python-checkins mailing list