Home | History | Annotate | Download | only in Lib

Lines Matching defs:next_plus

3389     def next_plus(self, context=None):

3435 ans = self.next_plus(context)
4791 def next_plus(self, a):
4797 >>> ExtendedContext.next_plus(Decimal('1'))
4799 >>> c.next_plus(Decimal('-1E-1007'))
4801 >>> ExtendedContext.next_plus(Decimal('-1.00000003'))
4803 >>> c.next_plus(Decimal('-Infinity'))
4805 >>> c.next_plus(1)
4809 return a.next_plus(context=self)