Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d2617b commit e2ffe29Copy full SHA for e2ffe29
1 file changed
Lib/test/test_io.py
@@ -3230,7 +3230,8 @@ def _to_memoryview(buf):
3230
3231
class CTextIOWrapperTest(TextIOWrapperTest):
3232
io = io
3233
- shutdown_error = "RuntimeError: could not find io module state"
+ shutdown_error = ("ImportError: sys.meta_path is None"
3234
+ if os.name == "nt" else "RuntimeError: could not find io module state")
3235
3236
def test_initialization(self):
3237
r = self.BytesIO(b"\xc3\xa9\n\n")
0 commit comments