(arr)
| 413 | |
| 414 | |
| 415 | def roundtrip_randsize(arr): |
| 416 | f = BytesIO() |
| 417 | format.write_array(f, arr) |
| 418 | f2 = BytesIOSRandomSize(f.getvalue()) |
| 419 | arr2 = format.read_array(f2) |
| 420 | return arr2 |
| 421 | |
| 422 | |
| 423 | def roundtrip_truncated(arr): |
no test coverage detected