(self)
| 6455 | proc.join() |
| 6456 | |
| 6457 | def test_close(self): |
| 6458 | queue = multiprocessing.SimpleQueue() |
| 6459 | queue.close() |
| 6460 | # closing a queue twice should not fail |
| 6461 | queue.close() |
| 6462 | |
| 6463 | # Test specific to CPython since it tests private attributes |
| 6464 | @test.support.cpython_only |
nothing calls this directly
no test coverage detected