summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-01-14 03:42:30 (GMT)
committerGuido van Rossum <guido@python.org>2007-01-14 03:42:30 (GMT)
commitab18684b60bc337bd104004e5eed9a9d4ebcbbea (patch)
treef713e542c23e6dfec391741cd1f315ac87417009 /Misc
parentddefaf31b366ea84250fc5090837c2b764a04102 (diff)
downloadcpython-ab18684b60bc337bd104004e5eed9a9d4ebcbbea.zip
cpython-ab18684b60bc337bd104004e5eed9a9d4ebcbbea.tar.gz
cpython-ab18684b60bc337bd104004e5eed9a9d4ebcbbea.tar.bz2
News about int/long unification and except syntax change.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS7
1 files changed, 7 insertions, 0 deletions
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().