↓ 3 callersFunctionexpanderCreate a function to insert value at many locations in sequence. >>> expander([0, 2])(['a', 'b', 'c'], 'z') ('z', 'a', 'z', 'b', 'c')
dask/array/slicing.py:707
↓ 3 callersFunctionreduction_1d_test(da_func, darr, np_func, narr, use_dtype=True, split_every=True)
dask/array/tests/test_reductions.py:96
↓ 3 callersFunctionreduction_2d_test(da_func, darr, np_func, narr, use_dtype=True, split_every=True)
dask/array/tests/test_reductions.py:176
↓ 3 callersFunctionreplace_ellipsisReplace ... with slices, :, : ,: >>> replace_ellipsis(4, (3, Ellipsis, 2)) (3, slice(None, None, None), slice(None, None, None), 2) >>>
dask/array/slicing.py:743