Lines Matching refs:nan
165 self.assertTrue(math.isnan(cmath.nan.real))
166 self.assertEqual(cmath.nan.imag, 0.0)
173 self.assertEqual(repr(cmath.nan), "nan")
441 nan = float('nan')
442 check(complex(nan, 0), (nan, nan))
443 check(complex(0, nan), (nan, nan))
444 check(complex(nan, nan), (nan, nan))
445 check(complex(inf, nan), (inf, nan))
446 check(complex(-inf, nan), (inf, nan))
447 check(complex(nan, inf), (inf, nan))
448 check(complex(nan, -inf), (inf, nan))