(self, objs)
| 3609 | class OverriddenArrayOld(np.ndarray): |
| 3610 | |
| 3611 | def _unwrap(self, objs): |
| 3612 | cls = type(self) |
| 3613 | result = [] |
| 3614 | for obj in objs: |
| 3615 | if isinstance(obj, cls): |
| 3616 | obj = np.array(obj) |
| 3617 | elif type(obj) != np.ndarray: |
| 3618 | return NotImplemented |
| 3619 | result.append(obj) |
| 3620 | return result |
| 3621 | |
| 3622 | def __array_ufunc__(self, ufunc, method, *inputs, **kwargs): |
| 3623 |
no outgoing calls
no test coverage detected