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 2ef8113 commit b702cf5Copy full SHA for b702cf5
Lib/test/test_io.py
@@ -4409,11 +4409,11 @@ def test_pickling(self):
4409
with self.assertRaisesRegex(TypeError, msg):
4410
pickle.dumps(f, protocol)
4411
4412
- @unittest.skipIf(support.is_emscripten, "Corrupts memory")
+ @unittest.skipIf(support.is_emscripten, "Emscripten corrupts memory when writing to nonblocking fd")
4413
def test_nonblock_pipe_write_bigbuf(self):
4414
self._test_nonblock_pipe_write(16*1024)
4415
4416
4417
def test_nonblock_pipe_write_smallbuf(self):
4418
self._test_nonblock_pipe_write(1024)
4419
0 commit comments