(tmpdir)
| 1221 | |
| 1222 | |
| 1223 | def test_memory_zero_length(tmpdir): |
| 1224 | path = os.path.join(str(tmpdir), guid()) |
| 1225 | f = open(path, 'wb') |
| 1226 | f.close() |
| 1227 | with pa.memory_map(path, mode='r+b') as memory_map: |
| 1228 | assert memory_map.size() == 0 |
| 1229 | |
| 1230 | |
| 1231 | def test_memory_map_large_seeks(): |