Add subprocess.list2cmdline for python 2 (#2971)

This commit is contained in:
Chad Dombrova
2019-05-08 01:21:32 -07:00
committed by Sebastian Rittau
parent d61635e243
commit feb74cf9de

View File

@@ -103,6 +103,8 @@ class Popen:
def __enter__(self) -> Popen: ...
def __exit__(self, type, value, traceback) -> bool: ...
def list2cmdline(seq: Sequence[str]) -> str: ... # undocumented
# Windows-only: STARTUPINFO etc.
STD_INPUT_HANDLE: Any