Clarification to avoid confusing output with file descriptors.

This commit is contained in:
Georg Brandl 2008-12-04 21:28:16 +00:00
parent 6831d6bc7f
commit 1743201364
1 changed files with 1 additions and 1 deletions

View 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 *input* argument should be a string to be sent to the child process, or
``None``, if no data should be sent to the child. ``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 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 the Popen object with ``stdin=PIPE``. Similarly, to get anything other than