(self)
| 6074 | # Test specific to CPython since it tests private attributes |
| 6075 | @test.support.cpython_only |
| 6076 | def test_closed(self): |
| 6077 | queue = multiprocessing.SimpleQueue() |
| 6078 | queue.close() |
| 6079 | self.assertTrue(queue._reader.closed) |
| 6080 | self.assertTrue(queue._writer.closed) |
| 6081 | |
| 6082 | |
| 6083 | class TestPoolNotLeakOnFailure(unittest.TestCase): |
nothing calls this directly
no test coverage detected