(self, other, context=None)
| 859 | return self._cmp(other) <= 0 |
| 860 | |
| 861 | def __gt__(self, other, context=None): |
| 862 | self, other = _convert_for_comparison(self, other) |
| 863 | if other is NotImplemented: |
| 864 | return other |
| 865 | ans = self._compare_check_nans(other, context) |
| 866 | if ans: |
| 867 | return False |
| 868 | return self._cmp(other) > 0 |
| 869 | |
| 870 | def __ge__(self, other, context=None): |
| 871 | self, other = _convert_for_comparison(self, other) |