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: http://git.ipfire.org/?a=commitdiff_plain;h=2ab07f01a4787336600b95cdf0312a9e6e00f34e;p=thirdparty%2FPython%2Fcpython.git (Merge 3.3) Issue #18137: Detect integer overflow on precision in float.__format__() and complex.__format__(). --- 2ab07f01a4787336600b95cdf0312a9e6e00f34e diff --cc Misc/NEWS index 7ef9154e63a8,04b5e41ad6ef..d595287f32aa --- 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.