Home | History | Annotate | Download | only in test

Lines Matching defs:testmodf

631     def testModf(self):
634 def testmodf(name, result, expected):
640 testmodf('modf(1.5)', math.modf(1.5), (0.5, 1.0))
641 testmodf('modf(-1.5)', math.modf(-1.5), (-0.5, -1.0))