diff options
author | Peter Astrand <astrand@lysator.liu.se> | 2007-01-13 22:35:35 (GMT) |
---|---|---|
committer | Peter Astrand <astrand@lysator.liu.se> | 2007-01-13 22:35:35 (GMT) |
commit | 10514a70ace6ba5b67d2b34dc4c0738d30f51226 (patch) | |
tree | 6b7d1b75db29707d5d374bb2307ddc0c055868fe /Lib/subprocess.py | |
parent | 2be9d43c18213be2387f3cdaf9d7bf02fdd37e8d (diff) | |
download | cpython-10514a70ace6ba5b67d2b34dc4c0738d30f51226.zip cpython-10514a70ace6ba5b67d2b34dc4c0738d30f51226.tar.gz cpython-10514a70ace6ba5b67d2b34dc4c0738d30f51226.tar.bz2 |
Fix for bug #1634343: allow specifying empty arguments on Windows
Diffstat (limited to 'Lib/subprocess.py')
-rw-r--r-- | Lib/subprocess.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/subprocess.py b/Lib/subprocess.py index ea1e0d1..8b25c2f 100644 --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -499,7 +499,7 @@ def list2cmdline(seq): if result: result.append(' ') - needquote = (" " in arg) or ("\t" in arg) + needquote = (" " in arg) or ("\t" in arg) or arg == "" if needquote: result.append('"') |