(self, other, context=None)
| 868 | return self._cmp(other) > 0 |
| 869 | |
| 870 | def __ge__(self, other, context=None): |
| 871 | self, other = _convert_for_comparison(self, other) |
| 872 | if other is NotImplemented: |
| 873 | return other |
| 874 | ans = self._compare_check_nans(other, context) |
| 875 | if ans: |
| 876 | return False |
| 877 | return self._cmp(other) >= 0 |
| 878 | |
| 879 | def compare(self, other, context=None): |
| 880 | """Compare self to other. Return a decimal value: |
nothing calls this directly
no test coverage detected