We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9238c73 commit 6fe68fdCopy full SHA for 6fe68fd
1 file changed
stdlib/3/subprocess.pyi
@@ -27,8 +27,8 @@ if sys.version_info >= (3, 5):
27
if sys.version_info >= (3, 6):
28
# Nearly same args as Popen.__init__ except for timeout, input, and check
29
def run(args: _CMD,
30
- timeout: float = ...,
31
- input: _TXT = ...,
+ timeout: Optional[float] = ...,
+ input: Optional[_TXT] = ...,
32
check: bool = ...,
33
bufsize: int = ...,
34
executable: _TXT = ...,
@@ -52,8 +52,8 @@ if sys.version_info >= (3, 5):
52
else:
53
54
55
56
57
58
59
0 commit comments