]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Clarification to avoid confusing output with file descriptors.
authorGeorg Brandl <georg@python.org>
Thu, 4 Dec 2008 21:28:16 +0000 (21:28 +0000)
committerGeorg Brandl <georg@python.org>
Thu, 4 Dec 2008 21:28:16 +0000 (21:28 +0000)
Doc/library/subprocess.rst

index 468892a5763790d2972d5e4518d3f590b13738e5..ae2f73b1c569b69df230d1c3bbea65a167c8e4af 100644 (file)
@@ -231,7 +231,7 @@ Instances of the :class:`Popen` class have the following methods:
    *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