commit | 36f6e2c9e0cfd1bab83d6ae1d192d4951ccc0160 | [log] [tgz] |
---|---|---|
author | Mark Dickinson <dickinsm@gmail.com> | Sun Oct 13 10:55:15 2013 +0100 |
committer | Mark Dickinson <dickinsm@gmail.com> | Sun Oct 13 10:55:15 2013 +0100 |
tree | 3acc2a620f4d478d4d2af2572f454aa6ebd9be49 | |
parent | 65e30a2db5772c223bb9a09e756dee743d05cc04 [diff] [blame] |
Issue #18739: Fix inconsistent results from math.log(n) and math.log(long(n))
diff --git a/Misc/NEWS b/Misc/NEWS index b7402e1..1500b15 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -9,6 +9,9 @@ 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.