Write the header for an array using the 1.0 format. Parameters ---------- fp : filelike object d : dict This has the appropriate entries for writing its string representation to the header of the file.
(fp, d)
| 447 | fp.write(header) |
| 448 | |
| 449 | def write_array_header_1_0(fp, d): |
| 450 | """ Write the header for an array using the 1.0 format. |
| 451 | |
| 452 | Parameters |
| 453 | ---------- |
| 454 | fp : filelike object |
| 455 | d : dict |
| 456 | This has the appropriate entries for writing its string |
| 457 | representation to the header of the file. |
| 458 | """ |
| 459 | _write_array_header(fp, d, (1, 0)) |
| 460 | |
| 461 | |
| 462 | def write_array_header_2_0(fp, d): |
nothing calls this directly
no test coverage detected