This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author skip.montanaro
Recipients MrJean1, loewis, mark.dickinson, skip.montanaro, terry.reedy
Date 2008-12-06.17:21:06
SpamBayes Score 4.397296e-06
Marked as misclassified No
Message-id <18746.46206.433323.53161@montanaro-dyndns-org.local>
In-reply-to <1228582369.43.0.573446643216.issue3167@psf.upfronthosting.co.za>
Content
Mark> Could you try the attached patch to see if it fixes the math.log
    Mark> and math.log10 test failures.  (The patch is generated against the
    Mark> trunk, but should apply cleanly to py3k or either of the 2.6 or
    Mark> 3.0 maintenance branches.

Seems to work on Sol10 for me:

    % ./python Lib/test/regrtest.py -v test_math 
    test_math
    testAcos (test.test_math.MathTests) ... ok
    testAcosh (test.test_math.MathTests) ... ok
    testAsin (test.test_math.MathTests) ... ok
    testAsinh (test.test_math.MathTests) ... ok
    testAtan (test.test_math.MathTests) ... ok
    testAtan2 (test.test_math.MathTests) ... ok
    testAtanh (test.test_math.MathTests) ... ok
    testCeil (test.test_math.MathTests) ... ok
    testConstants (test.test_math.MathTests) ... ok
    testCopysign (test.test_math.MathTests) ... ok
    testCos (test.test_math.MathTests) ... ok
    testCosh (test.test_math.MathTests) ... ok
    testDegrees (test.test_math.MathTests) ... ok
    testExp (test.test_math.MathTests) ... ok
    testFabs (test.test_math.MathTests) ... ok
    testFactorial (test.test_math.MathTests) ... ok
    testFloor (test.test_math.MathTests) ... ok
    testFmod (test.test_math.MathTests) ... ok
    testFrexp (test.test_math.MathTests) ... ok
    testFsum (test.test_math.MathTests) ... ok
    testHypot (test.test_math.MathTests) ... ok
    testIsinf (test.test_math.MathTests) ... ok
    testIsnan (test.test_math.MathTests) ... ok
    testLdexp (test.test_math.MathTests) ... ok
    testLog (test.test_math.MathTests) ... ok
    testLog10 (test.test_math.MathTests) ... ok
    testLog1p (test.test_math.MathTests) ... ok
    testModf (test.test_math.MathTests) ... ok
    testPow (test.test_math.MathTests) ... ok
    testRadians (test.test_math.MathTests) ... ok
    testSin (test.test_math.MathTests) ... ok
    testSinh (test.test_math.MathTests) ... ok
    testSqrt (test.test_math.MathTests) ... ok
    testTan (test.test_math.MathTests) ... ok
    testTanh (test.test_math.MathTests) ... ok
    test_exceptions (test.test_math.MathTests) ... ok
    test_testfile (test.test_math.MathTests) ... ok
    test_trunc (test.test_math.MathTests) ... ok
    Doctest: ieee754.txt ... ok

    ----------------------------------------------------------------------
    Ran 39 tests in 0.237s

    OK
    1 test OK.

Skip
History
Date User Action Args
2008-12-06 17:21:07skip.montanarosetrecipients: + skip.montanaro, loewis, terry.reedy, mark.dickinson, MrJean1
2008-12-06 17:21:06skip.montanarolinkissue3167 messages
2008-12-06 17:21:06skip.montanarocreate