Args: buf: the output of `dumps`.
(buf)
| 10 | |
| 11 | |
| 12 | def loads_pyarrow(buf): |
| 13 | """ |
| 14 | Args: |
| 15 | buf: the output of `dumps`. |
| 16 | """ |
| 17 | return pa.deserialize(buf) |
| 18 | |
| 19 | |
| 20 | def raw_reader(path): |
nothing calls this directly
no outgoing calls
no test coverage detected