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