Skip to content

Commit 22d131a

Browse files
and800gpshead
authored andcommitted
Doc: add missing capture_output arg to subprocess.run() signature (#8374)
1 parent cf2c5e8 commit 22d131a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Doc/library/subprocess.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ compatibility with older versions, see the :ref:`call-function-trio` section.
3838

3939

4040
.. function:: run(args, *, stdin=None, input=None, stdout=None, stderr=None,\
41-
shell=False, cwd=None, timeout=None, check=False, \
42-
encoding=None, errors=None, text=None, env=None)
41+
capture_output=False, shell=False, cwd=None, timeout=None, \
42+
check=False, encoding=None, errors=None, text=None, env=None)
4343

4444
Run the command described by *args*. Wait for command to complete, then
4545
return a :class:`CompletedProcess` instance.

0 commit comments

Comments
 (0)