diff options
author | Georg Brandl <georg@python.org> | 2008-12-04 21:28:16 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-12-04 21:28:16 (GMT) |
commit | 1743201364feaa9ab56acda3ccef051b2dd1d814 (patch) | |
tree | 8bbc83fafc239c350eb5dc4ff2e5b9e210312acf /Doc | |
parent | 6831d6bc7f4ee97ee854ddaa50f47ec4fb781cd2 (diff) | |
download | cpython-1743201364feaa9ab56acda3ccef051b2dd1d814.zip cpython-1743201364feaa9ab56acda3ccef051b2dd1d814.tar.gz cpython-1743201364feaa9ab56acda3ccef051b2dd1d814.tar.bz2 |
Clarification to avoid confusing output with file descriptors.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/subprocess.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index 468892a..ae2f73b 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -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 |