(self)
| 187 | "only rank-0 arrays can be converted to Python scalars.") |
| 188 | |
| 189 | def __complex__(self): |
| 190 | return self._scalarfunc(complex) |
| 191 | |
| 192 | def __float__(self): |
| 193 | return self._scalarfunc(float) |
nothing calls this directly
no test coverage detected