From: Benjamin Peterson Date: Wed, 7 Sep 2016 15:54:35 +0000 (-0700) Subject: new and exciting shutdown error on windows X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e2ffe29738edc4a643d7f14842c10eeeee273bec;p=python new and exciting shutdown error on windows --- diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py index c48ec3a239..f9f5d7a7ee 100644 --- a/Lib/test/test_io.py +++ b/Lib/test/test_io.py @@ -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")