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

Lines Matching defs:next_minus

3394     def next_minus(self, context=None):
3465 ans = self.next_minus(context)
4799 def next_minus(self, a):
4805 >>> ExtendedContext.next_minus(Decimal('1'))
4807 >>> c.next_minus(Decimal('1E-1007'))
4809 >>> ExtendedContext.next_minus(Decimal('-1.00000003'))
4811 >>> c.next_minus(Decimal('Infinity'))
4813 >>> c.next_minus(1)
4817 return a.next_minus(context=self)