summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-01-17 14:41:03 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-01-17 14:41:03 (GMT)
commita3ba4a15ec26a973f625a2f2f92cf7ff7d34bd79 (patch)
treec0e0f97d406c91e58c7df650ceceeefae1a8c4c7 /Misc/NEWS
parent20d6c153275de051f0800a266d511ea5bef782ce (diff)
downloadcpython-a3ba4a15ec26a973f625a2f2f92cf7ff7d34bd79.zip
cpython-a3ba4a15ec26a973f625a2f2f92cf7ff7d34bd79.tar.gz
cpython-a3ba4a15ec26a973f625a2f2f92cf7ff7d34bd79.tar.bz2
Merged revisions 77579 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r77579 | mark.dickinson | 2010-01-17 14:39:12 +0000 (Sun, 17 Jan 2010) | 9 lines Merged revisions 77578 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r77578 | mark.dickinson | 2010-01-17 13:37:57 +0000 (Sun, 17 Jan 2010) | 2 lines Issue #7632: Fix a memory leak in _Py_dg_strtod. ........ ................
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS5
1 files changed, 3 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1fc9986..ef0e3f0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -21,8 +21,9 @@ Core and Builtins
alpha 2, including: (1) a serious 'wrong output' bug that could
occur for long (> 40 digit) input strings, (2) a crash in dtoa.c
that occurred in debug builds when parsing certain long numeric
- strings corresponding to subnormal values, and (3) a number of flaws
- that could lead to incorrectly rounded results.
+ strings corresponding to subnormal values, (3) a memory leak for
+ some values large enough to cause overflow, and (4) a number of
+ flaws that could lead to incorrectly rounded results.
- Issue #7604: Deleting an unset slotted attribute did not raise an
AttributeError.