()
| 86 | |
| 87 | |
| 88 | def test_proxy_memory_pool(): |
| 89 | pool = pa.proxy_memory_pool(pa.default_memory_pool()) |
| 90 | check_allocated_bytes(pool) |
| 91 | wr = weakref.ref(pool) |
| 92 | assert wr() is not None |
| 93 | del pool |
| 94 | assert wr() is None |
| 95 | |
| 96 | |
| 97 | def test_logging_memory_pool(capfd): |
nothing calls this directly
no test coverage detected