(self, other, context=None)
| 915 | return self._cmp(other) <= 0 |
| 916 | |
| 917 | def __gt__(self, other, context=None): |
| 918 | self, other = _convert_for_comparison(self, other) |
| 919 | if other is NotImplemented: |
| 920 | return other |
| 921 | ans = self._compare_check_nans(other, context) |
| 922 | if ans: |
| 923 | return False |
| 924 | return self._cmp(other) > 0 |
| 925 | |
| 926 | def __ge__(self, other, context=None): |
| 927 | self, other = _convert_for_comparison(self, other) |
nothing calls this directly
no test coverage detected