add a NEWS entry

This commit is contained in:
Antoine Pitrou 2008-07-25 22:22:08 +00:00
parent c2cc80c64e
commit 92f8216ba1
1 changed files with 3 additions and 0 deletions

View File

@ -12,6 +12,9 @@ What's New in Python 2.6 beta 3?
Core and Builtins
-----------------
- Issue #1819: function calls with several named parameters are now on
average 35% faster (as measured by pybench).
- Issue #2378: An unexpected UnboundLocalError or NameError could appear when
the python debugger steps into a class statement: the free variables (local
variables defined in an outer scope) would be deleted from the outer scope.