(self, other, context=None)
| 924 | return self._cmp(other) > 0 |
| 925 | |
| 926 | def __ge__(self, other, context=None): |
| 927 | self, other = _convert_for_comparison(self, other) |
| 928 | if other is NotImplemented: |
| 929 | return other |
| 930 | ans = self._compare_check_nans(other, context) |
| 931 | if ans: |
| 932 | return False |
| 933 | return self._cmp(other) >= 0 |
| 934 | |
| 935 | def compare(self, other, context=None): |
| 936 | """Compare self to other. Return a decimal value: |
nothing calls this directly
no test coverage detected