(items, shape)
| 324 | return lst |
| 325 | |
| 326 | def carray(items, shape): |
| 327 | if listp(items) and not 0 in shape and prod(shape) != len(items): |
| 328 | raise ValueError("prod(shape) != len(items)") |
| 329 | return _ca(items, shape) |
| 330 | |
| 331 | def farray(items, shape): |
| 332 | if listp(items) and not 0 in shape and prod(shape) != len(items): |
no test coverage detected
searching dependent graphs…