(self, *args, **kwargs)
| 3306 | |
| 3307 | class A: |
| 3308 | def __array__(self, *args, **kwargs): |
| 3309 | raise NotImplementedError |
| 3310 | |
| 3311 | # Don't override the error from calling __array__() |
| 3312 | assert_raises(NotImplementedError, np.dot, A(), A()) |
nothing calls this directly
no outgoing calls
no test coverage detected