(mm)
| 465 | |
| 466 | @normalize_token.register(np.memmap) |
| 467 | def normalize_mmap(mm): |
| 468 | return hash_buffer_hex(np.ascontiguousarray(mm)) |
| 469 | |
| 470 | @normalize_token.register(np.ufunc) |
| 471 | def normalize_ufunc(func): |
nothing calls this directly
no test coverage detected