| 960 | x = statistics._convert(Fraction(95, 99), Fraction) |
| 961 | self.check_exact_equal(x, Fraction(95, 99)) |
| 962 | class MyFraction(Fraction): |
| 963 | def __truediv__(self, other): |
| 964 | return self.__class__(super().__truediv__(other)) |
| 965 | x = statistics._convert(Fraction(71, 13), MyFraction) |
| 966 | self.check_exact_equal(x, MyFraction(71, 13)) |
| 967 |
no outgoing calls
searching dependent graphs…