()
| 300 | |
| 301 | |
| 302 | def test_mmap(): |
| 303 | import mmap |
| 304 | |
| 305 | with TestHook() as hook: |
| 306 | mmap.mmap(-1, 8) |
| 307 | assertEqual(hook.seen[0][1][:2], (-1, 8)) |
| 308 | |
| 309 | |
| 310 | def test_ctypes_call_function(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…