diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-06-23 12:54:30 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-06-23 12:54:30 (GMT) |
commit | 2f084ecfe78472b6a1a6c8b07472672176d4f848 (patch) | |
tree | 0a4c0948defc6a3019553b48800f2f2b4656368b /Misc | |
parent | da30acf50b4ccf6751cdd6c786cbab283865a79f (diff) | |
download | cpython-2f084ecfe78472b6a1a6c8b07472672176d4f848.zip cpython-2f084ecfe78472b6a1a6c8b07472672176d4f848.tar.gz cpython-2f084ecfe78472b6a1a6c8b07472672176d4f848.tar.bz2 |
Issue #18137: Detect integer overflow on precision in float.__format__() and
complex.__format__().
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 3.3.3 release candidate 1? Core and Builtins ----------------- +- Issue #18137: Detect integer overflow on precision in float.__format__() + and complex.__format__(). + - Issue #18183: Fix various unicode operations on strings with large unicode codepoints. |