Home | History | Annotate | Download | only in Lib

Lines Matching refs:next_plus

3517     def next_plus(self, context=None):
3563 ans = self.next_plus(context)
4991 def next_plus(self, a):
4997 >>> ExtendedContext.next_plus(Decimal('1'))
4999 >>> c.next_plus(Decimal('-1E-1007'))
5001 >>> ExtendedContext.next_plus(Decimal('-1.00000003'))
5003 >>> c.next_plus(Decimal('-Infinity'))
5005 >>> c.next_plus(1)
5009 return a.next_plus(context=self)