[Python-checkins] Doc: add missing capture_output arg to subprocess.run() signature (#8374)

Gregory P. Smith webhook-mailer at python.org
Thu Aug 9 16:01:58 EDT 2018


https://github.com/python/cpython/commit/22d131a7f9e4e64486da1d1cddbfed2379517791
commit: 22d131a7f9e4e64486da1d1cddbfed2379517791
branch: master
author: Andriy Maletsky <9919211+and800 at users.noreply.github.com>
committer: Gregory P. Smith <greg at krypto.org>
date: 2018-08-09T13:01:54-07:00
summary:

Doc: add missing capture_output arg to subprocess.run() signature (#8374)

files:
M Doc/library/subprocess.rst

diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
index 9f733bcfffb0..6e602e72a1c8 100644
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -38,8 +38,8 @@ compatibility with older versions, see the :ref:`call-function-trio` section.
 
 
 .. function:: run(args, *, stdin=None, input=None, stdout=None, stderr=None,\
-                  shell=False, cwd=None, timeout=None, check=False, \
-                  encoding=None, errors=None, text=None, env=None)
+                  capture_output=False, shell=False, cwd=None, timeout=None, \
+                  check=False, encoding=None, errors=None, text=None, env=None)
 
    Run the command described by *args*.  Wait for command to complete, then
    return a :class:`CompletedProcess` instance.



More information about the Python-checkins mailing list