summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-01-12 22:55:51 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-01-12 22:55:51 (GMT)
commit5ff4f279e6342bf142de22c91662b8eb70ce722a (patch)
treeb5e9d55c8edd6b1d2c0082707d9a243e53d5d91e /Misc
parent8efef5ce9f6c0dfd2cb4720b61a37bbdfdb5e30e (diff)
downloadcpython-5ff4f279e6342bf142de22c91662b8eb70ce722a.zip
cpython-5ff4f279e6342bf142de22c91662b8eb70ce722a.tar.gz
cpython-5ff4f279e6342bf142de22c91662b8eb70ce722a.tar.bz2
Issue #7632: Fix a bug in dtoa.c that could lead to incorrectly-rounded results.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 2 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9fc17dc..d2b75b1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -14,7 +14,8 @@ Core and Builtins
- Issue #7632: Fix a crash in dtoa.c that occurred in debug builds
when parsing certain long numeric strings corresponding to subnormal
- values.
+ values. Also fix a number of bugs in dtoa.c that could lead to
+ incorrectly rounded results when converting strings to floats.
- Issue #7319: Silence DeprecationWarning by default.