summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-06-23 12:54:30 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-06-23 12:54:30 (GMT)
commit2f084ecfe78472b6a1a6c8b07472672176d4f848 (patch)
tree0a4c0948defc6a3019553b48800f2f2b4656368b /Misc
parentda30acf50b4ccf6751cdd6c786cbab283865a79f (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 59e915c..04b5e41 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.