(self, dtype=None, copy=None)
| 174 | return f"{self.__class__.__name__}(\n{self._array}\n{self.attrs}\n)" |
| 175 | |
| 176 | def __array__(self, dtype=None, copy=None): |
| 177 | return np.asarray(self._array) |
| 178 | |
| 179 | def __array_ufunc__(self, ufunc, method, *inputs, **kwargs): |
| 180 | if method == '__call__': |
no outgoing calls
no test coverage detected