(self, other, context=None)
| 889 | # that specified by IEEE 754. |
| 890 | |
| 891 | def __eq__(self, other, context=None): |
| 892 | self, other = _convert_for_comparison(self, other, equality_op=True) |
| 893 | if other is NotImplemented: |
| 894 | return other |
| 895 | if self._check_nans(other, context): |
| 896 | return False |
| 897 | return self._cmp(other) == 0 |
| 898 | |
| 899 | def __lt__(self, other, context=None): |
| 900 | self, other = _convert_for_comparison(self, other) |
nothing calls this directly
no test coverage detected