summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-01-12 23:09:26 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-01-12 23:09:26 (GMT)
commit466725136d7aee2c0e09834e5ed802e69860e035 (patch)
tree7aad00b8f517f3bf77231d6cfd060ea2b3a84d03 /Misc
parentd7966fca123941b32fe22b4c13f3bd22332cf6c5 (diff)
downloadcpython-466725136d7aee2c0e09834e5ed802e69860e035.zip
cpython-466725136d7aee2c0e09834e5ed802e69860e035.tar.gz
cpython-466725136d7aee2c0e09834e5ed802e69860e035.tar.bz2
Merged revisions 77452 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r77452 | mark.dickinson | 2010-01-12 23:04:19 +0000 (Tue, 12 Jan 2010) | 23 lines Merged revisions 77410,77421,77450-77451 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r77410 | mark.dickinson | 2010-01-10 13:06:31 +0000 (Sun, 10 Jan 2010) | 1 line Remove unused BCinfo fields and an unused macro. ........ r77421 | mark.dickinson | 2010-01-11 17:15:13 +0000 (Mon, 11 Jan 2010) | 1 line Change a variable type to avoid signed overflow; replace repeated '19999' constant by a define. ........ r77450 | mark.dickinson | 2010-01-12 22:23:56 +0000 (Tue, 12 Jan 2010) | 4 lines Issue #7632: Fix a problem with _Py_dg_strtod that could lead to crashes in debug builds, for certain long numeric strings corresponding to subnormal values. ........ r77451 | mark.dickinson | 2010-01-12 22:55:51 +0000 (Tue, 12 Jan 2010) | 2 lines Issue #7632: Fix a bug in dtoa.c that could lead to incorrectly-rounded results. ........ ................
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 54cbd77..1b71de6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,11 @@ What's New in Python 3.1.2?
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. Also fix a number of bugs in dtoa.c that could lead to
+ incorrectly rounded results when converting strings to floats.
+
- Issue #7604: Deleting an unset slotted attribute did not raise an
AttributeError.