(self)
| 1753 | #self.assertEqual(1.**0, 1) |
| 1754 | |
| 1755 | def testRadians(self): |
| 1756 | self.assertRaises(TypeError, math.radians) |
| 1757 | self.ftest('radians(180)', math.radians(180), math.pi) |
| 1758 | self.ftest('radians(90)', math.radians(90), math.pi/2) |
| 1759 | self.ftest('radians(-45)', math.radians(-45), -math.pi/4) |
| 1760 | self.ftest('radians(0)', math.radians(0), 0) |
| 1761 | |
| 1762 | @requires_IEEE_754 |
| 1763 | def testRemainder(self): |
nothing calls this directly
no test coverage detected