| 980 | x = statistics._convert(Fraction(1, 40), Decimal) |
| 981 | self.check_exact_equal(x, Decimal("0.025")) |
| 982 | class MyDecimal(Decimal): |
| 983 | def __truediv__(self, other): |
| 984 | return self.__class__(super().__truediv__(other)) |
| 985 | x = statistics._convert(Fraction(-15, 16), MyDecimal) |
| 986 | self.check_exact_equal(x, MyDecimal("-0.9375")) |
| 987 |
no outgoing calls
searching dependent graphs…