diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2013-10-13 09:55:15 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2013-10-13 09:55:15 (GMT) |
commit | 36f6e2c9e0cfd1bab83d6ae1d192d4951ccc0160 (patch) | |
tree | 3acc2a620f4d478d4d2af2572f454aa6ebd9be49 /Misc | |
parent | 65e30a2db5772c223bb9a09e756dee743d05cc04 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |