(self, ndigits=None)
| 588 | return self._apply_operator(abs) |
| 589 | |
| 590 | def __round__(self, ndigits=None): |
| 591 | args = () if ndigits is None else (ndigits,) |
| 592 | return self._apply_operator(round, *args) |
| 593 | |
| 594 | # Unary operators |
| 595 | def __neg__(self): |
nothing calls this directly
no test coverage detected