From: Victor Stinner Date: Sun, 23 Jun 2013 12:55:43 +0000 (+0200) Subject: (Merge 3.3) Issue #18137: Detect integer overflow on precision in X-Git-Tag: v3.4.0a1~422 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2ab07f01a4787336600b95cdf0312a9e6e00f34e;p=python (Merge 3.3) Issue #18137: Detect integer overflow on precision in float.__format__() and complex.__format__(). --- 2ab07f01a4787336600b95cdf0312a9e6e00f34e diff --cc Misc/NEWS index 7ef9154e63,04b5e41ad6..d595287f32 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,9 -12,9 +10,12 @@@ What's New in Python 3.4.0 Alpha 1 Core and Builtins ----------------- + - Issue #18137: Detect integer overflow on precision in float.__format__() + and complex.__format__(). + +- Issue #15767: Introduce ModuleNotFoundError which is raised when a module + could not be found. + - Issue #18183: Fix various unicode operations on strings with large unicode codepoints.