From 22d131a7f9e4e64486da1d1cddbfed2379517791 Mon Sep 17 00:00:00 2001 From: Andriy Maletsky <9919211+and800@users.noreply.github.com> Date: Thu, 9 Aug 2018 23:01:54 +0300 Subject: Doc: add missing capture_output arg to subprocess.run() signature (#8374) --- 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 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. -- cgit v0.12