(self)
| 992 | self.check_exact_equal(x, inf) |
| 993 | |
| 994 | def test_nan(self): |
| 995 | for nan in (float('nan'), Decimal('NAN'), Decimal('sNAN')): |
| 996 | x = statistics._convert(nan, type(nan)) |
| 997 | self.assertTrue(_nan_equal(x, nan)) |
| 998 | |
| 999 | def test_invalid_input_type(self): |
| 1000 | with self.assertRaises(TypeError): |
nothing calls this directly
no test coverage detected