(self)
| 214 | "only rank-0 arrays can be converted to Python scalars.") |
| 215 | |
| 216 | def __complex__(self): |
| 217 | return self._scalarfunc(complex) |
| 218 | |
| 219 | def __float__(self): |
| 220 | return self._scalarfunc(float) |
nothing calls this directly
no test coverage detected