(self)
| 599 | return self._apply_operator(operator.not_) |
| 600 | |
| 601 | def __invert__(self): |
| 602 | return self._apply_operator(operator.inv) |
| 603 | |
| 604 | def __pos__(self): |
| 605 | return self._apply_operator(operator.pos) |
nothing calls this directly
no test coverage detected