(self)
| 986 | self.check_exact_equal(x, MyDecimal("-0.9375")) |
| 987 | |
| 988 | def test_inf(self): |
| 989 | for INF in (float('inf'), Decimal('inf')): |
| 990 | for inf in (INF, -INF): |
| 991 | x = statistics._convert(inf, type(inf)) |
| 992 | self.check_exact_equal(x, inf) |
| 993 | |
| 994 | def test_nan(self): |
| 995 | for nan in (float('nan'), Decimal('NAN'), Decimal('sNAN')): |
nothing calls this directly
no test coverage detected