From ab18684b60bc337bd104004e5eed9a9d4ebcbbea Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sun, 14 Jan 2007 03:42:30 +0000 Subject: News about int/long unification and except syntax change. --- Misc/NEWS | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Misc/NEWS b/Misc/NEWS index 73a985b..830a66a 100644 --- 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(). -- cgit v0.12