Lines Matching refs:next_minus
3494 def next_minus(self, context=None):
3565 ans = self.next_minus(context)
4971 def next_minus(self, a):
4977 >>> ExtendedContext.next_minus(Decimal('1'))
4979 >>> c.next_minus(Decimal('1E-1007'))
4981 >>> ExtendedContext.next_minus(Decimal('-1.00000003'))
4983 >>> c.next_minus(Decimal('Infinity'))
4985 >>> c.next_minus(1)
4989 return a.next_minus(context=self)