HomeSort by relevance Sort by last modified time
    Searched full:testmodf (Results 1 - 2 of 2) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_math.py 625 def testModf(self):
628 def testmodf(name, result, expected): function in function:MathTests.testModf
634 testmodf('modf(1.5)', math.modf(1.5), (0.5, 1.0))
635 testmodf('modf(-1.5)', math.modf(-1.5), (-0.5, -1.0))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_math.py 625 def testModf(self):
628 def testmodf(name, result, expected): function in function:MathTests.testModf
634 testmodf('modf(1.5)', math.modf(1.5), (0.5, 1.0))
635 testmodf('modf(-1.5)', math.modf(-1.5), (-0.5, -1.0))
    [all...]

Completed in 1456 milliseconds