(self, other, context=None)
| 850 | return self._cmp(other) < 0 |
| 851 | |
| 852 | def __le__(self, other, context=None): |
| 853 | self, other = _convert_for_comparison(self, other) |
| 854 | if other is NotImplemented: |
| 855 | return other |
| 856 | ans = self._compare_check_nans(other, context) |
| 857 | if ans: |
| 858 | return False |
| 859 | return self._cmp(other) <= 0 |
| 860 | |
| 861 | def __gt__(self, other, context=None): |
| 862 | self, other = _convert_for_comparison(self, other) |