[Python-3000-checkins] r53422 - python/branches/p3yk/Misc/NEWS

guido.van.rossum python-3000-checkins at python.org
Sun Jan 14 04:42:31 CET 2007


Author: guido.van.rossum
Date: Sun Jan 14 04:42:30 2007
New Revision: 53422

Modified:
   python/branches/p3yk/Misc/NEWS
Log:
News about int/long unification and except syntax change.


Modified: python/branches/p3yk/Misc/NEWS
==============================================================================
--- python/branches/p3yk/Misc/NEWS	(original)
+++ python/branches/p3yk/Misc/NEWS	Sun Jan 14 04:42:30 2007
@@ -36,6 +36,13 @@
 Core and Builtins
 -----------------
 
+- Int/Long unification is halfway complete.  There are a few broken tests,
+  the 'long' built-in hasn't been removed yet, and literals with trailing
+  'L' or 'l' are still recognized.  Performance may be sub-optimal.
+
+- 'except E, V' must now be spelled as 'except E as V' and deletes V
+  at the end of the except clause; V must be a simple name.
+
 - Added function annotations per PEP 3107.
 
 - Moved intern() to sys.intern().


More information about the Python-3000-checkins mailing list