(self)
| 596 | return self._apply_operator(operator.neg) |
| 597 | |
| 598 | def __not__(self): |
| 599 | return self._apply_operator(operator.not_) |
| 600 | |
| 601 | def __invert__(self): |
| 602 | return self._apply_operator(operator.inv) |
nothing calls this directly
no test coverage detected