Issue #22854: Merge test fix from 3.5

This commit is contained in:
Martin Panter 2016-03-31 21:06:06 +00:00
commit 0fc03186f7
1 changed files with 1 additions and 1 deletions

View File

@ -449,7 +449,7 @@ class IOTest(unittest.TestCase):
else:
self.assertRaises(OSError, obj.write, data)
if sys.platform.startswith("win") or test in (
if sys.platform.startswith("win") and test in (
pipe_reader, pipe_writer):
# Pipes seem to appear as seekable on Windows
continue