Home | History | Annotate | Download | only in python2.7

Lines Matching defs:min_mag

3364     def min_mag(self, other, context=None):
4733 def min_mag(self, a, b):
4736 >>> ExtendedContext.min_mag(Decimal('3'), Decimal('-2'))
4738 >>> ExtendedContext.min_mag(Decimal('-3'), Decimal('NaN'))
4740 >>> ExtendedContext.min_mag(1, -2)
4742 >>> ExtendedContext.min_mag(Decimal(1), -2)
4744 >>> ExtendedContext.min_mag(1, Decimal(-2))
4748 return a.min_mag(b, context=self)