()
| 38 | 'b': [test_util.rands(5) for _ in range(10000)]}) |
| 39 | |
| 40 | def action(): |
| 41 | df_bytes = pa.ipc.serialize_pandas(df).to_pybytes() |
| 42 | buf = pa.py_buffer(df_bytes) |
| 43 | pa.ipc.deserialize_pandas(buf) |
| 44 | |
| 45 | # Abort at 128MB threshold |
| 46 | test_util.memory_leak_check(action, threshold=1 << 27, iterations=100) |
no outgoing calls
no test coverage detected