]> granicus.if.org Git - python/commitdiff
News about int/long unification and except syntax change.
authorGuido van Rossum <guido@python.org>
Sun, 14 Jan 2007 03:42:30 +0000 (03:42 +0000)
committerGuido van Rossum <guido@python.org>
Sun, 14 Jan 2007 03:42:30 +0000 (03:42 +0000)
Misc/NEWS

index 73a985b5a87f73e184a697c28b3cfc2738cb7183..830a66a7e7ebe21ac1c89bdd70b6923eae661eee 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -36,6 +36,13 @@ TO DO
 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().