Doc: add missing capture_output arg to subprocess.run() signature (#8374)

This commit is contained in:
Andriy Maletsky 2018-08-09 23:01:54 +03:00 committed by Gregory P. Smith
parent cf2c5e8e28
commit 22d131a7f9

View 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.