Lines Matching full:max_mag
3334 def max_mag(self, other, context=None):
4689 def max_mag(self, a, b):
4692 >>> ExtendedContext.max_mag(Decimal('7'), Decimal('NaN'))
4694 >>> ExtendedContext.max_mag(Decimal('7'), Decimal('-10'))
4696 >>> ExtendedContext.max_mag(1, -2)
4698 >>> ExtendedContext.max_mag(Decimal(1), -2)
4700 >>> ExtendedContext.max_mag(1, Decimal(-2))
4704 return a.max_mag(b, context=self)