mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Doc: add missing capture_output arg to subprocess.run() signature (#8374)
This commit is contained in:
parent
cf2c5e8e28
commit
22d131a7f9
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue