hash(self)
(self)
| 994 | return Fraction(round(self / shift) * shift) |
| 995 | |
| 996 | def __hash__(self): |
| 997 | """hash(self)""" |
| 998 | return _hash_algorithm(self._numerator, self._denominator) |
| 999 | |
| 1000 | def __eq__(a, b): |
| 1001 | """a == b""" |
nothing calls this directly
no test coverage detected