commit | 4b068190aa4de5ade2d755ee25dbf3d21452616a | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Fri Feb 20 03:19:25 2009 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Fri Feb 20 03:19:25 2009 +0000 |
tree | c8d3f36e693dbc7c407e5ded530d7ba848b69788 | |
parent | 2fc224f0904f398be79e40616cc8a4570375c786 [diff] [blame] |
fix None errno #5312
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py index 5d3e040..2070495 100644 --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py
@@ -535,7 +535,7 @@ # Windows raises IOError except (IOError, OSError) as err: if err.errno != 2: # ignore "no such file" - pass # XXX see #5312 + raise # # POSIX tests