diff options
author | Andriy Maletsky <9919211+and800@users.noreply.github.com> | 2018-08-09 20:01:54 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2018-08-09 20:01:54 (GMT) |
commit | 22d131a7f9e4e64486da1d1cddbfed2379517791 (patch) | |
tree | 095322afa8a70c20bd330dc055f6cd44e93f3c59 /Doc/library/subprocess.rst | |
parent | cf2c5e8e2867e41d34079b2e464bbbe653fb7981 (diff) | |
download | cpython-22d131a7f9e4e64486da1d1cddbfed2379517791.zip cpython-22d131a7f9e4e64486da1d1cddbfed2379517791.tar.gz cpython-22d131a7f9e4e64486da1d1cddbfed2379517791.tar.bz2 |
Doc: add missing capture_output arg to subprocess.run() signature (#8374)
Diffstat (limited to 'Doc/library/subprocess.rst')
-rw-r--r-- | Doc/library/subprocess.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index 9f733bc..6e602e7 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. |