(self, axis, out)
| 527 | class MyArray(np.ndarray): |
| 528 | |
| 529 | def sum(self, axis, out): |
| 530 | return 'summed' |
| 531 | |
| 532 | def __array_function__(self, func, types, args, kwargs): |
| 533 | return super().__array_function__(func, types, args, kwargs) |
no outgoing calls
no test coverage detected