Lines Matching full:is_nan
951 elif self.is_nan():
2504 return (self.is_nan() and other.is_nan() or
3027 def is_nan(self):
4360 def is_nan(self, a):
4364 >>> ExtendedContext.is_nan(Decimal('2.50'))
4366 >>> ExtendedContext.is_nan(Decimal('NaN'))
4368 >>> ExtendedContext.is_nan(Decimal('-sNaN'))
4370 >>> ExtendedContext.is_nan(1)
4374 return a.is_nan()