commit | 760388100e2cc21c5d58a9014db5426e6107b5e4 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@gmail.com> | Sun Jun 23 14:56:57 2013 +0200 |
committer | Victor Stinner <victor.stinner@gmail.com> | Sun Jun 23 14:56:57 2013 +0200 |
tree | f09fb0201f06797ddeda2ba73d44bcb8b3cb1af9 | |
parent | 223a22b6ababadefa831c634f3094e24d0e36cbe [diff] [blame] |
Issue #18137: Detect integer overflow on precision in float.__format__() and complex.__format__().
diff --git a/Misc/NEWS b/Misc/NEWS index 9418183..b455366 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -9,6 +9,9 @@ Core and Builtins ----------------- +- Issue #18137: Detect integer overflow on precision in float.__format__() + and complex.__format__(). + - Issue #18038: SyntaxError raised during compilation sources with illegal encoding now always contains an encoding name.