commit | 29794ecd43efc2c1b33da2c4e5064f0a1a654342 | [log] [tgz] |
---|---|---|
author | Peter Astrand <astrand@lysator.liu.se> | Sat Jan 13 22:37:11 2007 +0000 |
committer | Peter Astrand <astrand@lysator.liu.se> | Sat Jan 13 22:37:11 2007 +0000 |
tree | 04e956136ed7dd63a7efce7c106eeb62e28d5c95 | |
parent | 4347c135ceaa2af4c42853f02c32d9c1e4c442fb [diff] |
Fix for bug #1634343: allow specifying empty arguments on Windows
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py index 64f8d40..c2db6fa 100644 --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py
@@ -430,6 +430,8 @@ '"a\\\\b c" d e') self.assertEqual(subprocess.list2cmdline(['a\\\\b\\ c', 'd', 'e']), '"a\\\\b\\ c" d e') + self.assertEqual(subprocess.list2cmdline(['ab', '']), + 'ab ""') def test_poll(self):