Home | History | Annotate | Download | only in test

Lines Matching refs:testFrexp

439     def testFrexp(self):
442 def testfrexp(name, result, expected):
448 testfrexp('frexp(-1)', math.frexp(-1), (-0.5, 1))
449 testfrexp('frexp(0)', math.frexp(0), (0, 0))
450 testfrexp('frexp(1)', math.frexp(1), (0.5, 1))
451 testfrexp('frexp(2)', math.frexp(2), (0.5, 2))