(self)
| 1530 | |
| 1531 | class SubinterpThreadingTests(BaseTestCase): |
| 1532 | def pipe(self): |
| 1533 | r, w = os.pipe() |
| 1534 | self.addCleanup(os.close, r) |
| 1535 | self.addCleanup(os.close, w) |
| 1536 | if hasattr(os, 'set_blocking'): |
| 1537 | os.set_blocking(r, False) |
| 1538 | return (r, w) |
| 1539 | |
| 1540 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 1541 | def test_threads_join(self): |
no test coverage detected