mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 13:34:58 +08:00
apply subprocess 'cwd' fix from Vlad-Shcherbina
This commit is contained in:
@@ -12,11 +12,13 @@ def call(args: Sequence[str], *, stdin: Any = None, stdout: Any = None,
|
||||
cwd: str = None) -> int: ...
|
||||
def check_call(args: Sequence[str], *, stdin: Any = None, stdout: Any = None,
|
||||
stderr: Any = None, shell: bool = False,
|
||||
env: Mapping[str, str] = None) -> int: ...
|
||||
env: Mapping[str, str] = None,
|
||||
cwd: str = None) -> int: ...
|
||||
# Return str/bytes
|
||||
def check_output(args: Sequence[str], *, stdin: Any = None, stderr: Any = None,
|
||||
shell: bool = False, universal_newlines: bool = False,
|
||||
env: Mapping[str, str] = None) -> Any: ...
|
||||
env: Mapping[str, str] = None,
|
||||
cwd: str = None) -> Any: ...
|
||||
|
||||
# TODO types
|
||||
PIPE = ... # type: Any
|
||||
|
||||
Reference in New Issue
Block a user