(self, func, method, *inputs, **kwargs)
| 3220 | # check override works even with instance with high priority. |
| 3221 | class A: |
| 3222 | def __array_ufunc__(self, func, method, *inputs, **kwargs): |
| 3223 | return self, func, method, inputs, kwargs |
| 3224 | |
| 3225 | class MyNDArray(np.ndarray): |
| 3226 | __array_priority__ = 100 |
no test coverage detected