(self)
| 5392 | p.join() |
| 5393 | |
| 5394 | def test_neg_timeout(self): |
| 5395 | from multiprocessing.connection import wait |
| 5396 | a, b = multiprocessing.Pipe() |
| 5397 | t = time.monotonic() |
| 5398 | res = wait([a], timeout=-1) |
| 5399 | t = time.monotonic() - t |
| 5400 | self.assertEqual(res, []) |
| 5401 | self.assertLess(t, 1) |
| 5402 | a.close() |
| 5403 | b.close() |
| 5404 | |
| 5405 | # |
| 5406 | # Issue 14151: Test invalid family on invalid environment |
nothing calls this directly
no test coverage detected