]> granicus.if.org Git - python/commitdiff
Doc: add missing capture_output arg to subprocess.run() signature (#8374)
authorAndriy Maletsky <9919211+and800@users.noreply.github.com>
Thu, 9 Aug 2018 20:01:54 +0000 (23:01 +0300)
committerGregory P. Smith <greg@krypto.org>
Thu, 9 Aug 2018 20:01:54 +0000 (13:01 -0700)
Doc/library/subprocess.rst

index 9f733bcfffb0782d825e958d9d50b1eb692a86b8..6e602e72a1c8b2743a977aaef1f56b21508fd00d 100644 (file)
@@ -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.