apply subprocess 'cwd' fix from Vlad-Shcherbina

This commit is contained in:
Matthias Kramm
2015-10-07 08:41:07 -07:00
parent ec67428914
commit c59a54a81a

View File

@@ -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