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

Lines Matching defs:is_zero

3059     def is_zero(self):
3510 if self.is_zero():
4469 def is_zero(self, a):
4472 >>> ExtendedContext.is_zero(Decimal('0'))
4474 >>> ExtendedContext.is_zero(Decimal('2.50'))
4476 >>> ExtendedContext.is_zero(Decimal('-0E+2'))
4478 >>> ExtendedContext.is_zero(1)
4480 >>> ExtendedContext.is_zero(0)
4484 return a.is_zero()