Home
last modified time | relevance | path

Searched refs:is_nan (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_float.py943 self.assertTrue(NAN.is_nan())
944 self.assertFalse(INF.is_nan())
945 self.assertFalse((0.).is_nan())
Dtest_decimal.py1905 d = c.is_nan(Decimal(10))
1906 self.assertEqual(c.is_nan(10), d)
1907 self.assertRaises(TypeError, c.is_nan, '10')
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Ddecimal.py951 elif self.is_nan():
2476 return (self.is_nan() and other.is_nan() or
2999 def is_nan(self): member in Decimal
4332 def is_nan(self, a): member in Context
4346 return a.is_nan()