cpython: b3c79e0ba477 (original) (raw)
Mercurial > cpython
changeset 100816:b3c79e0ba477 3.5
Issue #22854: Fix logic for skipping test [#22854]
Martin Panter vadmium+py@gmail.com | |
---|---|
date | Thu, 31 Mar 2016 21:05:31 +0000 |
parents | 8640154d8d7c |
children | de8412dc477e 466d2e21acf8 |
files | Lib/test/test_io.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-)[+] [-] Lib/test/test_io.py 2 |
line wrap: on
line diff
--- a/Lib/test/test_io.py +++ b/Lib/test/test_io.py @@ -449,7 +449,7 @@ class IOTest(unittest.TestCase): else: self.assertRaises(OSError, obj.write, data)
if sys.platform.startswith("win") or test in ([](#l1.7)
if sys.platform.startswith("win") and test in ([](#l1.8) pipe_reader, pipe_writer):[](#l1.9) # Pipes seem to appear as seekable on Windows[](#l1.10) continue[](#l1.11)