pytest.mark.parametrize(
"arr, result",
[
(WrappedArray(np.arange(4)), False),
(da.from_array(np.arange(4)), False),
(EncapsulateNDArray(np.arange(4)), True),
(
| 1 | from __future__ import annotations |
| 2 | |
| 3 | import operator |
| 4 |
nothing calls this directly
no outgoing calls
no test coverage detected