[Python-checkins] r67538 - python/trunk/Doc/library/subprocess.rst

georg.brandl python-checkins at python.org
Thu Dec 4 22:28:16 CET 2008


Author: georg.brandl
Date: Thu Dec  4 22:28:16 2008
New Revision: 67538

Log:
Clarification to avoid confusing output with file descriptors.


Modified:
   python/trunk/Doc/library/subprocess.rst

Modified: python/trunk/Doc/library/subprocess.rst
==============================================================================
--- python/trunk/Doc/library/subprocess.rst	(original)
+++ python/trunk/Doc/library/subprocess.rst	Thu Dec  4 22:28:16 2008
@@ -231,7 +231,7 @@
    *input* argument should be a string to be sent to the child process, or
    ``None``, if no data should be sent to the child.
 
-   :meth:`communicate` returns a tuple ``(stdout, stderr)``.
+   :meth:`communicate` returns a tuple ``(stdoutdata, stderrdata)``.
 
    Note that if you want to send data to the process's stdin, you need to create
    the Popen object with ``stdin=PIPE``.  Similarly, to get anything other than


More information about the Python-checkins mailing list