Home | History | Annotate | Download | only in test

Lines Matching refs:MyDecimal

725         class MyDecimal(Decimal):
728 for type_ in (float, MyFloat, Decimal, MyDecimal):
748 class MyDecimal(Decimal):
750 for nan in (NAN, MyDecimal(NAN), sNAN, MyDecimal(sNAN)):
968 class MyDecimal(Decimal):
971 x = statistics._convert(Fraction(-15, 16), MyDecimal)
972 self.check_exact_equal(x, MyDecimal("-0.9375"))