(items, shape)
| 312 | return lst |
| 313 | |
| 314 | def carray(items, shape): |
| 315 | if listp(items) and not 0 in shape and prod(shape) != len(items): |
| 316 | raise ValueError("prod(shape) != len(items)") |
| 317 | return _ca(items, shape) |
| 318 | |
| 319 | def farray(items, shape): |
| 320 | if listp(items) and not 0 in shape and prod(shape) != len(items): |
no test coverage detected