(self)
| 1903 | return self._scalarfunc(complex) |
| 1904 | |
| 1905 | def __index__(self): |
| 1906 | return self._scalarfunc(operator.index) |
| 1907 | |
| 1908 | def __setitem__(self, key, value): |
| 1909 | if value is np.ma.masked: |
nothing calls this directly
no test coverage detected