(self, other, context=None)
| 897 | return self._cmp(other) == 0 |
| 898 | |
| 899 | def __lt__(self, other, context=None): |
| 900 | self, other = _convert_for_comparison(self, other) |
| 901 | if other is NotImplemented: |
| 902 | return other |
| 903 | ans = self._compare_check_nans(other, context) |
| 904 | if ans: |
| 905 | return False |
| 906 | return self._cmp(other) < 0 |
| 907 | |
| 908 | def __le__(self, other, context=None): |
| 909 | self, other = _convert_for_comparison(self, other) |
nothing calls this directly
no test coverage detected