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

Lines Matching refs:plus

3962         the plus operation on the operand.
4290 """Returns a multiplied by b, plus c.
4877 Essentially a plus operation with all trailing zeros removed from the
4948 def plus(self, a):
4949 """Plus corresponds to unary prefix plus in Python.
4952 operation plus(a) is calculated as add('0', a) where the '0'
4955 >>> ExtendedContext.plus(Decimal('1.3'))
4957 >>> ExtendedContext.plus(Decimal('-1.3'))
4959 >>> ExtendedContext.plus(-1)