diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-10-07 17:55:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-07 17:55:26 (GMT) |
commit | 69029bd2ca454b1b49d1974da2e47567833c55a5 (patch) | |
tree | 0db10b99c488508b275e77e18574bd05b69d773c /Lib/subprocess.py | |
parent | 245ea1f5007735c2d6e28a84f23e294880e0dec4 (diff) | |
download | cpython-69029bd2ca454b1b49d1974da2e47567833c55a5.zip cpython-69029bd2ca454b1b49d1974da2e47567833c55a5.tar.gz cpython-69029bd2ca454b1b49d1974da2e47567833c55a5.tar.bz2 |
Add note on capture_output arg to subprocess.run() docstring (GH-98012)
add note on capture_output arg to the docstring
(cherry picked from commit 80b3e32d6242c27094dd04c4c3d0c3d3b2889a01)
Co-authored-by: andrei kulakov <andrei.avk@gmail.com>
Diffstat (limited to 'Lib/subprocess.py')
-rw-r--r-- | Lib/subprocess.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/subprocess.py b/Lib/subprocess.py index 760b93b..9cadd1b 100644 --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -509,7 +509,8 @@ def run(*popenargs, The returned instance will have attributes args, returncode, stdout and stderr. By default, stdout and stderr are not captured, and those attributes - will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them. + will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them, + or pass capture_output=True to capture both. If check is True and the exit code was non-zero, it raises a CalledProcessError. The CalledProcessError object will have the return code |