(self)
| 824 | # Test _isfinite private function. |
| 825 | |
| 826 | def test_finite(self): |
| 827 | # Test that finite numbers are recognised as finite. |
| 828 | for x in (5, Fraction(1, 3), 2.5, Decimal("5.5")): |
| 829 | self.assertTrue(statistics._isfinite(x)) |
| 830 | |
| 831 | def test_infinity(self): |
| 832 | # Test that INFs are not recognised as finite. |
nothing calls this directly
no test coverage detected