From: Benjamin Peterson Date: Sat, 13 Aug 2011 03:18:19 +0000 (-0500) Subject: merge 3.2 (#12732) X-Git-Tag: v3.3.0a1~1706 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f8e7543df95d5cc12f7478d2eed690621919d68a;p=thirdparty%2FPython%2Fcpython.git merge 3.2 (#12732) --- f8e7543df95d5cc12f7478d2eed690621919d68a diff --cc Misc/NEWS index 34aac7941d7c,354d09a070c1..360e7312715c --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,12 -10,14 +10,15 @@@ What's New in Python 3.3 Alpha 1 Core and Builtins ----------------- + - Issue #12732: In narrow unicode builds, allow Unicode identifiers which fall + outside the BMP. + -- Issue #11603: Fix a crash when __str__ is rebound as __repr__. Patch by - Andreas Stührk. +- Issue #12575: Validate user-generated AST before it is compiled. -- Issue #11321: Fix a crash with multiple imports of the _pickle module when - embedding Python. Patch by Andreas Stührk. +- Make type(None), type(Ellipsis), and type(NotImplemented) callable. They + return the respective singleton instances. + +- Forbid summing bytes in sum(). - Verify the types of AST strings and identifiers provided by the user before compiling them.