From a8465da863035c350c4cf5a69cb703ef2a117fdb Mon Sep 17 00:00:00 2001 From: Miguel Gaiowski Date: Fri, 2 Mar 2018 11:04:22 -0800 Subject: [PATCH] Add stub for subprocess.list2cmdline function (#1898) --- stdlib/3/subprocess.pyi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stdlib/3/subprocess.pyi b/stdlib/3/subprocess.pyi index 8bb75ab23..41ddb9a61 100644 --- a/stdlib/3/subprocess.pyi +++ b/stdlib/3/subprocess.pyi @@ -350,4 +350,6 @@ class Popen: def getstatusoutput(cmd: _TXT) -> Tuple[int, str]: ... def getoutput(cmd: _TXT) -> str: ... +def list2cmdline(seq: Sequence[str]) -> str: ... # undocumented + # Windows-only: STARTUPINFO etc.