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

Lines Matching refs:minus

3960         If the operand is negative, the result is the same as using the minus
4750 def minus(self, a):
4751 """Minus corresponds to unary prefix minus in Python.
4754 operation minus(a) is calculated as subtract('0', a) where the '0'
4757 >>> ExtendedContext.minus(Decimal('1.3'))
4759 >>> ExtendedContext.minus(Decimal('-1.3'))
4761 >>> ExtendedContext.minus(1)