diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2016-08-21 09:23:23 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2016-08-21 09:23:23 (GMT) |
commit | dc590a4cc331601c8ab5332d907ea7abccb88ded (patch) | |
tree | a81efeee86d4a79fb2fdf827c4735e799e4fb876 /Misc | |
parent | 164a3c822dd1da2218d7c262fdd10d092a77c422 (diff) | |
download | cpython-dc590a4cc331601c8ab5332d907ea7abccb88ded.zip cpython-dc590a4cc331601c8ab5332d907ea7abccb88ded.tar.gz cpython-dc590a4cc331601c8ab5332d907ea7abccb88ded.tar.bz2 |
Issue #25604: Fix minor bug in integer true division, which could
have caused off-by-one-ulp results on certain platforms.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -10,6 +10,10 @@ What's New in Python 3.6.0 beta 1 Core and Builtins ----------------- +- Issue #25604: Fix a minor bug in integer true division; this bug could + potentially have caused off-by-one-ulp results on platforms with + unreliable ldexp implementations. + - Issue #27662: Fix an overflow check in ``List_New``: the original code was checking against ``Py_SIZE_MAX`` instead of the correct upper bound of ``Py_SSIZE_T_MAX``. Patch by Xiang Zhang. |