diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-01-12 22:23:56 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-01-12 22:23:56 (GMT) |
commit | 8efef5ce9f6c0dfd2cb4720b61a37bbdfdb5e30e (patch) | |
tree | 749d0392efbc8ef53bd5f9bc22a25a41c8b4ba6d /Misc | |
parent | efa45f35b529a61aceb4e1266ded7a0b268b0c17 (diff) | |
download | cpython-8efef5ce9f6c0dfd2cb4720b61a37bbdfdb5e30e.zip cpython-8efef5ce9f6c0dfd2cb4720b61a37bbdfdb5e30e.tar.gz cpython-8efef5ce9f6c0dfd2cb4720b61a37bbdfdb5e30e.tar.bz2 |
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.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -12,6 +12,10 @@ What's New in Python 2.7 alpha 3? 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. + - Issue #7319: Silence DeprecationWarning by default. - Issue #2335: Backport set literals syntax from Python 3.x. |