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

neal.norwitz python-checkins at python.org
Fri Dec 29 04:01:06 CET 2006


Author: neal.norwitz
Date: Fri Dec 29 04:01:06 2006
New Revision: 53187

Modified:
   python/branches/release25-maint/Lib/subprocess.py
Log:
SF bug #1623890, fix argument name in docstring

Modified: python/branches/release25-maint/Lib/subprocess.py
==============================================================================
--- python/branches/release25-maint/Lib/subprocess.py	(original)
+++ python/branches/release25-maint/Lib/subprocess.py	Fri Dec 29 04:01:06 2006
@@ -166,7 +166,7 @@
 communicate(input=None)
     Interact with process: Send data to stdin.  Read data from stdout
     and stderr, until end-of-file is reached.  Wait for process to
-    terminate.  The optional stdin argument should be a string to be
+    terminate.  The optional input argument should be a string to be
     sent to the child process, or None, if no data should be sent to
     the child.
 


More information about the Python-checkins mailing list