From 56410810d325973927068a8f5b18378f37da7e1b Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Thu, 9 Aug 2018 15:03:52 -0700 Subject: [PATCH] Doc: add missing capture_output arg to subprocess.run() signature (GH-8374) (cherry picked from commit 22d131a7f9e4e64486da1d1cddbfed2379517791) Co-authored-by: Andriy Maletsky <9919211+and800@users.noreply.github.com> --- Doc/library/subprocess.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index 58439864f37..19f6ff38bb2 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.