diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2008-12-11 19:28:08 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2008-12-11 19:28:08 (GMT) |
commit | 4c96fa55258628fa917c3ccf2bf2d84070955dc1 (patch) | |
tree | 4d653d9a1be1471f6a4372094af3a471489bc0cd /Misc | |
parent | e29d435e0cefb3e1772f6de0844e628aac3cf98e (diff) | |
download | cpython-4c96fa55258628fa917c3ccf2bf2d84070955dc1.zip cpython-4c96fa55258628fa917c3ccf2bf2d84070955dc1.tar.gz cpython-4c96fa55258628fa917c3ccf2bf2d84070955dc1.tar.bz2 |
Issues #3167, #3682: tests for math.log and math.log10 were failing on
Solaris and OpenBSD. Fix this by handling special values and domain
errors directly in mathmodule.c, passing only positive nonspecial floats
to the system log/log10.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -160,6 +160,9 @@ C-API Extension Modules ----------------- +- Issues #3167, #3682: Fix test_math failures for log, log10 on Solaris, + OpenBSD. + - Issue #4365: Add crtassem.h constants to the msvcrt module. - Issue #4396: The parser module now correctly validates the with statement. |