From feb74cf9de638e8211530c7a705645e446f9b16d Mon Sep 17 00:00:00 2001 From: Chad Dombrova Date: Wed, 8 May 2019 01:21:32 -0700 Subject: [PATCH] Add subprocess.list2cmdline for python 2 (#2971) --- stdlib/2/subprocess.pyi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stdlib/2/subprocess.pyi b/stdlib/2/subprocess.pyi index 1dcfecbbb..b60e89e67 100644 --- a/stdlib/2/subprocess.pyi +++ b/stdlib/2/subprocess.pyi @@ -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