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