(mm_obj)
| 218 | |
| 219 | def test_close_and_closed(self): |
| 220 | def close_mmap(mm_obj): |
| 221 | mm_obj.close() |
| 222 | self.assertTrue(mm_obj.closed) |
| 223 | |
| 224 | with mmap.mmap(ANONYMOUS_MEM, 1) as mm_obj: |
| 225 | run_concurrently( |
nothing calls this directly
no test coverage detected