add a NEWS note for new args syntax

This commit is contained in:
Benjamin Peterson 2008-08-20 01:27:30 +00:00
parent 67f24f1ed6
commit f647dc10e3
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 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 - ctypes function pointers that are COM methods have a boolean True
value again. value again.