From: Antoine Pitrou Date: Fri, 25 Jul 2008 22:22:08 +0000 (+0000) Subject: add a NEWS entry X-Git-Tag: v2.6b3~224 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=92f8216ba1d64e1a2af19a914a5542af50dc26b6;p=python add a NEWS entry --- diff --git a/Misc/NEWS b/Misc/NEWS index 995c7c3b42..e330809fbc 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -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.