(arrays)
| 205 | |
| 206 | |
| 207 | def _arrays_for_stack_dispatcher(arrays): |
| 208 | if not hasattr(arrays, "__getitem__"): |
| 209 | raise TypeError('arrays to stack must be passed as a "sequence" type ' |
| 210 | 'such as list or tuple.') |
| 211 | |
| 212 | return tuple(arrays) |
| 213 | |
| 214 | |
| 215 | def _vhstack_dispatcher(tup, *, dtype=None, casting=None): |
no outgoing calls
no test coverage detected