diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-01-17 13:37:57 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-01-17 13:37:57 (GMT) |
commit | 23df3d270d3572c43638d15b63684405b66887f7 (patch) | |
tree | 2103008213a5cb1b593797cd138d18b188b3b737 /Misc | |
parent | 724c5b2e7ffa2c676c17458ad55b3f13d4a9b6d4 (diff) | |
download | cpython-23df3d270d3572c43638d15b63684405b66887f7.zip cpython-23df3d270d3572c43638d15b63684405b66887f7.tar.gz cpython-23df3d270d3572c43638d15b63684405b66887f7.tar.bz2 |
Issue #7632: Fix a memory leak in _Py_dg_strtod.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -25,8 +25,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 #7319, #7770: Silence DeprecationWarning by default when -3 is not used. |