(self, other)
| 200 | return self.tuple < other.tuple |
| 201 | |
| 202 | def __le__(self, other): |
| 203 | other = self._validate_operand(other) |
| 204 | return self.tuple <= other.tuple |
| 205 | |
| 206 | def __gt__(self, other): |
| 207 | other = self._validate_operand(other) |
nothing calls this directly
no test coverage detected