Commit e2ffe297 authored by Benjamin Peterson's avatar Benjamin Peterson

new and exciting shutdown error on windows

parent 9d2617be
......@@ -3230,7 +3230,8 @@ def _to_memoryview(buf):
class CTextIOWrapperTest(TextIOWrapperTest):
io = io
shutdown_error = "RuntimeError: could not find io module state"
shutdown_error = ("ImportError: sys.meta_path is None"
if os.name == "nt" else "RuntimeError: could not find io module state")
def test_initialization(self):
r = self.BytesIO(b"\xc3\xa9\n\n")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment