@@ -40,7 +40,7 @@ compatibility with older versions, see the :ref:`call-function-trio` section.
40
40
.. function :: run(args, *, stdin=None, input=None, stdout=None, stderr=None,\
41
41
capture_output=False, shell=False, cwd=None, timeout=None, \
42
42
check=False, encoding=None, errors=None, text=None, env=None, \
43
- universal_newlines=None)
43
+ universal_newlines=None, ** other_popen_kwargs )
44
44
45
45
Run the command described by *args *. Wait for command to complete, then
46
46
return a :class: `CompletedProcess ` instance.
@@ -1049,7 +1049,8 @@ Prior to Python 3.5, these three functions comprised the high level API to
1049
1049
subprocess. You can now use :func: `run ` in many cases, but lots of existing code
1050
1050
calls these functions.
1051
1051
1052
- .. function :: call(args, *, stdin=None, stdout=None, stderr=None, shell=False, cwd=None, timeout=None)
1052
+ .. function :: call(args, *, stdin=None, stdout=None, stderr=None, \
1053
+ shell=False, cwd=None, timeout=None, **other_popen_kwargs)
1053
1054
1054
1055
Run the command described by *args *. Wait for command to complete, then
1055
1056
return the :attr: `~Popen.returncode ` attribute.
@@ -1075,7 +1076,9 @@ calls these functions.
1075
1076
.. versionchanged :: 3.3
1076
1077
*timeout * was added.
1077
1078
1078
- .. function :: check_call(args, *, stdin=None, stdout=None, stderr=None, shell=False, cwd=None, timeout=None)
1079
+ .. function :: check_call(args, *, stdin=None, stdout=None, stderr=None, \
1080
+ shell=False, cwd=None, timeout=None, \
1081
+ **other_popen_kwargs)
1079
1082
1080
1083
Run command with arguments. Wait for command to complete. If the return
1081
1084
code was zero then return, otherwise raise :exc: `CalledProcessError `. The
@@ -1106,7 +1109,8 @@ calls these functions.
1106
1109
1107
1110
.. function :: check_output(args, *, stdin=None, stderr=None, shell=False, \
1108
1111
cwd=None, encoding=None, errors=None, \
1109
- universal_newlines=None, timeout=None, text=None)
1112
+ universal_newlines=None, timeout=None, text=None, \
1113
+ **other_popen_kwargs)
1110
1114
1111
1115
Run command with arguments and return its output.
1112
1116
0 commit comments