(self, other)
| 41 | def __lt__(self, other): return self._richcmp(other, operator.lt) |
| 42 | def __ge__(self, other): return self._richcmp(other, operator.ge) |
| 43 | def __gt__(self, other): return self._richcmp(other, operator.gt) |
| 44 | |
| 45 | # shouldn't be calling __float__ at all when doing comparisons |
| 46 | def __float__(self): |