Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d97adfb commit e883091Copy full SHA for e883091
1 file changed
Doc/library/subprocess.rst
@@ -55,7 +55,9 @@ compatibility with older versions, see the :ref:`call-function-trio` section.
55
If *capture_output* is true, stdout and stderr will be captured.
56
When used, the internal :class:`Popen` object is automatically created with
57
``stdout=PIPE`` and ``stderr=PIPE``. The *stdout* and *stderr* arguments may
58
- not be supplied at the same time as *capture_output*.
+ not be supplied at the same time as *capture_output*. If you wish to capture
59
+ and combine both streams into one, use ``stdout=PIPE`` and ``stderr=STDOUT``
60
+ instead of *capture_output*.
61
62
The *timeout* argument is passed to :meth:`Popen.communicate`. If the timeout
63
expires, the child process will be killed and waited for. The
0 commit comments