Doc: add missing capture_output arg to subprocess.run() signature (GH-8374)
(cherry picked from commit 22d131a7f9
)
Co-authored-by: Andriy Maletsky <9919211+and800@users.noreply.github.com>
This commit is contained in:
parent
426135b674
commit
56410810d3
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue