]> granicus.if.org Git - python/commitdiff
Update news about int/long unification.
authorGuido van Rossum <guido@python.org>
Tue, 30 Jan 2007 00:00:40 +0000 (00:00 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 30 Jan 2007 00:00:40 +0000 (00:00 +0000)
Misc/NEWS

index e23b957cf72d8746c953514639aaaac4d8ab05f1..984bf81fe04a6bfeab64d528e3e1a0eca0112611 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -38,9 +38,9 @@ Core and Builtins
 
 - PEP 3102: keyword-only arguments.
 
-- Int/Long unification is halfway complete.  The 'long' built-in type
-  hasn't been removed yet, and literals with trailing 'L' or 'l' are
-  still recognized.  Performance may be sub-optimal.
+- Int/Long unification is mostly complete.  The 'long' built-in type
+  and literals with trailing 'L' or 'l' have been removed.
+  Performance may be sub-optimal (haven't really benchmarked).
 
 - '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.