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

Lines Matching defs:next_plus

3417     def next_plus(self, context=None):
3463 ans = self.next_plus(context)
4819 def next_plus(self, a):
4825 >>> ExtendedContext.next_plus(Decimal('1'))
4827 >>> c.next_plus(Decimal('-1E-1007'))
4829 >>> ExtendedContext.next_plus(Decimal('-1.00000003'))
4831 >>> c.next_plus(Decimal('-Infinity'))
4833 >>> c.next_plus(1)
4837 return a.next_plus(context=self)