Searched defs:is_qnan (Results 1 - 1 of 1) sorted by relevance

/external/python/cpython2/Lib/
H A Ddecimal.py782 elif self.is_qnan():
786 elif other.is_qnan():
3037 def is_qnan(self): member in class:Decimal
3501 if self.is_qnan():
4399 def is_qnan(self, a): member in class:Context
4402 >>> ExtendedContext.is_qnan(Decimal('2.50'))
4404 >>> ExtendedContext.is_qnan(Decimal('NaN'))
4406 >>> ExtendedContext.is_qnan(Decimal('sNaN'))
4408 >>> ExtendedContext.is_qnan(1)
4412 return a.is_qnan()
[all...]

Completed in 59 milliseconds