(arr)
| 405 | |
| 406 | |
| 407 | def roundtrip(arr): |
| 408 | f = BytesIO() |
| 409 | format.write_array(f, arr) |
| 410 | f2 = BytesIO(f.getvalue()) |
| 411 | arr2 = format.read_array(f2, allow_pickle=True) |
| 412 | return arr2 |
| 413 | |
| 414 | |
| 415 | def roundtrip_randsize(arr): |
no outgoing calls
no test coverage detected