(self)
| 6066 | proc.join() |
| 6067 | |
| 6068 | def test_close(self): |
| 6069 | queue = multiprocessing.SimpleQueue() |
| 6070 | queue.close() |
| 6071 | # closing a queue twice should not fail |
| 6072 | queue.close() |
| 6073 | |
| 6074 | # Test specific to CPython since it tests private attributes |
| 6075 | @test.support.cpython_only |
nothing calls this directly
no test coverage detected