diff options
author | 2008-08-20 01:27:30 +0000 | |
---|---|---|
committer | 2008-08-20 01:27:30 +0000 | |
commit | f647dc10e339e8f5b2a17d7057f4fba958678d72 (patch) | |
tree | f808a0745b5806e4dc1b211bad7df4a884147c24 | |
parent | follow-up of issue3473: update the compiler package to recognize the new syntax. (diff) | |
download | cpython-f647dc10e339e8f5b2a17d7057f4fba958678d72.tar.gz cpython-f647dc10e339e8f5b2a17d7057f4fba958678d72.tar.bz2 cpython-f647dc10e339e8f5b2a17d7057f4fba958678d72.zip |
add a NEWS note for new args syntax
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS index 627ce44ca9b..daba2840930 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. |