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 64c417d commit 7893908Copy full SHA for 7893908
Lib/test/test_os.py
@@ -264,6 +264,7 @@ def test_readinto(self):
264
@unittest.skipUnless(hasattr(os, 'get_blocking'),
265
'needs os.get_blocking() and os.set_blocking()')
266
@unittest.skipUnless(hasattr(os, "pipe"), "requires os.pipe()")
267
+ @unittest.skipIf(support.is_emscripten, "set_blocking does not work correctly")
268
def test_readinto_non_blocking(self):
269
# Verify behavior of a readinto which would block on a non-blocking fd.
270
r, w = os.pipe()
0 commit comments