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