(self)
| 6463 | # Test specific to CPython since it tests private attributes |
| 6464 | @test.support.cpython_only |
| 6465 | def test_closed(self): |
| 6466 | queue = multiprocessing.SimpleQueue() |
| 6467 | queue.close() |
| 6468 | self.assertTrue(queue._reader.closed) |
| 6469 | self.assertTrue(queue._writer.closed) |
| 6470 | |
| 6471 | |
| 6472 | class TestPoolNotLeakOnFailure(unittest.TestCase): |
nothing calls this directly
no test coverage detected