aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-08-20 01:27:30 +0000
committerBenjamin Peterson <benjamin@python.org>2008-08-20 01:27:30 +0000
commitf647dc10e339e8f5b2a17d7057f4fba958678d72 (patch)
treef808a0745b5806e4dc1b211bad7df4a884147c24
parentfollow-up of issue3473: update the compiler package to recognize the new syntax. (diff)
downloadcpython-f647dc10e339e8f5b2a17d7057f4fba958678d72.tar.gz
cpython-f647dc10e339e8f5b2a17d7057f4fba958678d72.tar.bz2
cpython-f647dc10e339e8f5b2a17d7057f4fba958678d72.zip
add a NEWS note for new args syntax
-rw-r--r--Misc/NEWS3
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.