(self, other)
| 196 | return self.tuple == other.tuple |
| 197 | |
| 198 | def __lt__(self, other): |
| 199 | other = self._validate_operand(other) |
| 200 | return self.tuple < other.tuple |
| 201 | |
| 202 | def __le__(self, other): |
| 203 | other = self._validate_operand(other) |
nothing calls this directly
no test coverage detected