summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2013-10-13 09:55:15 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2013-10-13 09:55:15 (GMT)
commit36f6e2c9e0cfd1bab83d6ae1d192d4951ccc0160 (patch)
tree3acc2a620f4d478d4d2af2572f454aa6ebd9be49 /Misc
parent65e30a2db5772c223bb9a09e756dee743d05cc04 (diff)
downloadcpython-36f6e2c9e0cfd1bab83d6ae1d192d4951ccc0160.zip
cpython-36f6e2c9e0cfd1bab83d6ae1d192d4951ccc0160.tar.gz
cpython-36f6e2c9e0cfd1bab83d6ae1d192d4951ccc0160.tar.bz2
Issue #18739: Fix inconsistent results from math.log(n) and math.log(long(n))
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b7402e1..1500b15 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -9,6 +9,9 @@ What's New in Python 2.7.6?
Core and Builtins
-----------------
+- Issue #18739: Fix an inconsistency between math.log(n) and math.log(long(n));
+ the results could be off from one another by a ulp or two.
+
- Issue #13461: Fix a crash in the "replace" error handler on 64-bit platforms.
Patch by Yogesh Chaudhari.