Skip to content

Commit d03adfb

Browse files
committed
Add reference to fix for pipe i/o
1 parent b1d36b1 commit d03adfb

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Lib/test/test_io.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3933,6 +3933,7 @@ def test_issue35928(self):
39333933
self.assertEqual(res + f.readline(), 'foo\nbar\n')
39343934

39353935
@unittest.skipUnless(hasattr(os, "pipe"), "requires os.pipe()")
3936+
@unittest.skipIf(support.is_emscripten, "Would be fixed by emscripten-core/emscripten#23306")
39363937
def test_read_non_blocking(self):
39373938
import os
39383939
r, w = os.pipe()

0 commit comments

Comments
 (0)