From: andrei kulakov Date: Fri, 7 Oct 2022 17:08:08 +0000 (-0400) Subject: Add note on capture_output arg to subprocess.run() docstring (#98012) X-Git-Tag: v3.12.0a1~194 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=80b3e32d6242c27094dd04c4c3d0c3d3b2889a01;p=thirdparty%2FPython%2Fcpython.git Add note on capture_output arg to subprocess.run() docstring (#98012) add note on capture_output arg to the docstring --- diff --git a/Lib/subprocess.py b/Lib/subprocess.py index 760b93b47ebb..9cadd1bf8e62 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