diff options
author | Guido van Rossum <guido@python.org> | 2007-01-30 00:00:40 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-01-30 00:00:40 (GMT) |
commit | ec7027fc5b9d26175ad776bf7ee4798395e8dc48 (patch) | |
tree | 89e729689feaad0e5c4f9cf12ed641c4cb983314 /Misc | |
parent | 398db8be63d2ee093266943f189b4c5d570fedfa (diff) | |
download | cpython-ec7027fc5b9d26175ad776bf7ee4798395e8dc48.zip cpython-ec7027fc5b9d26175ad776bf7ee4798395e8dc48.tar.gz cpython-ec7027fc5b9d26175ad776bf7ee4798395e8dc48.tar.bz2 |
Update news about int/long unification.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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. |