(self, func, method, *inputs, **kwargs)
| 3272 | self.count = 0 |
| 3273 | |
| 3274 | def __array_ufunc__(self, func, method, *inputs, **kwargs): |
| 3275 | self.count += 1 |
| 3276 | return NotImplemented |
| 3277 | |
| 3278 | class CSub(C): |
| 3279 | def __array_ufunc__(self, func, method, *inputs, **kwargs): |
nothing calls this directly
no outgoing calls
no test coverage detected