(arrays, axis=None, out=None, *,
dtype=None, casting=None)
| 360 | |
| 361 | |
| 362 | def _stack_dispatcher(arrays, axis=None, out=None, *, |
| 363 | dtype=None, casting=None): |
| 364 | arrays = _arrays_for_stack_dispatcher(arrays) |
| 365 | if out is not None: |
| 366 | # optimize for the typical case where only arrays is provided |
| 367 | arrays = list(arrays) |
| 368 | arrays.append(out) |
| 369 | return arrays |
| 370 | |
| 371 | |
| 372 | @array_function_dispatch(_stack_dispatcher) |
nothing calls this directly
no test coverage detected