import decimal import fractions class Dec(decimal.Decimal): def __Fraction__(self): return self.__new__(self.numerator) / self.__new__(self.denominator) getcontext = decimal.getcontext class Frac(fractions.Fraction): pass