diff options
Diffstat (limited to 'Doc/library/subprocess.rst')
| -rw-r--r-- | Doc/library/subprocess.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index 356605f..615adb2 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -104,17 +104,17 @@ compatibility with older versions, see the :ref:`call-function-trio` section. .. attribute:: stdout Captured stdout from the child process. A bytes sequence, or a string if - :func:`run` was called with ``universal_newlines=True``. None if stdout + :func:`run` was called with ``universal_newlines=True``. ``None`` if stdout was not captured. If you ran the process with ``stderr=subprocess.STDOUT``, stdout and stderr will be combined in this attribute, and :attr:`stderr` will be - None. + ``None``. .. attribute:: stderr Captured stderr from the child process. A bytes sequence, or a string if - :func:`run` was called with ``universal_newlines=True``. None if stderr + :func:`run` was called with ``universal_newlines=True``. ``None`` if stderr was not captured. .. method:: check_returncode() |
