From: Benjamin Peterson Date: Wed, 20 Aug 2008 01:27:30 +0000 (+0000) Subject: add a NEWS note for new args syntax X-Git-Tag: v2.6b3~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f647dc10e339e8f5b2a17d7057f4fba958678d72;p=thirdparty%2FPython%2Fcpython.git add a NEWS note for new args syntax --- diff --git a/Misc/NEWS b/Misc/NEWS index 627ce44ca9bf..daba28409303 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -12,6 +12,9 @@ What's New in Python 2.6 beta 3? Core and Builtins ----------------- +- Keyword arguments can now follow starred arguments. (``f(a, *args, + keyword=23)`` is now valid syntax.) + - ctypes function pointers that are COM methods have a boolean True value again.