summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2008-12-11 21:56:00 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2008-12-11 21:56:00 (GMT)
commite675f08e0333aacfc37f7995ab22e436f2862e2a (patch)
tree978679f0d469be3600dc1827688560a9d8a341eb /Misc
parentda2706b28f31db11919c19cf136fddd42b9a4191 (diff)
downloadcpython-e675f08e0333aacfc37f7995ab22e436f2862e2a.zip
cpython-e675f08e0333aacfc37f7995ab22e436f2862e2a.tar.gz
cpython-e675f08e0333aacfc37f7995ab22e436f2862e2a.tar.bz2
Merged revisions 67707 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r67707 | mark.dickinson | 2008-12-11 19:28:08 +0000 (Thu, 11 Dec 2008) | 5 lines 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/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5f33479..10a0745 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -87,6 +87,11 @@ Library
support unusual filenames (such as those containing semi-colons) in
Content-Disposition headers.
+Extension Modules
+-----------------
+
+- Issues #3167, #3682: Fix test_math failures for log, log10 on Solaris,
+ OpenBSD.
Build
-----