(self, other, context=None)
| 906 | return self._cmp(other) < 0 |
| 907 | |
| 908 | def __le__(self, other, context=None): |
| 909 | self, other = _convert_for_comparison(self, other) |
| 910 | if other is NotImplemented: |
| 911 | return other |
| 912 | ans = self._compare_check_nans(other, context) |
| 913 | if ans: |
| 914 | return False |
| 915 | return self._cmp(other) <= 0 |
| 916 | |
| 917 | def __gt__(self, other, context=None): |
| 918 | self, other = _convert_for_comparison(self, other) |
nothing calls this directly
no test coverage detected