Merge pull request #348 from sharmaeklavya2/fix-subprocess-check-output

subprocess: Fix return type of check_output.
This commit is contained in:
Matthias Kramm
2016-07-12 17:12:33 -07:00
committed by GitHub

View File

@@ -58,7 +58,7 @@ def check_output(args: Union[str, Sequence[str]],
creationflags: int = ...,
restore_signals: bool = ...,
start_new_session: bool = ...,
pass_fds: Any = ...) -> bytes: ...
pass_fds: Any = ...) -> Any: ...
# TODO types
PIPE = ... # type: Any