summaryrefslogtreecommitdiff
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2007-12-08 22:11:32 +0000
committerChristian Heimes <christian@cheimes.de>2007-12-08 22:11:32 +0000
commit93266ab60e6f41addd2896902ad1e148e71b7acd (patch)
treed4f8521406b20623536a11446a521c6a78fdcf32 /Misc/NEWS
parent127eb76330d2c056ff7d597051b0428a89084ccd (diff)
downloadcpython-93266ab60e6f41addd2896902ad1e148e71b7acd.tar.gz
Fixed #1573: Improper use of the keyword-only syntax makes the parser crash
>>> def f(*, **kw): ... pass ... python: Python/ast.c:652: handle_keywordonly_args: Assertion 'kwonlyargs != ((void *)0)' failed.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS20
1 files changed, 20 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b3905c6ac3..f5ab8689bd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -4,7 +4,27 @@ Python News
(editors: check NEWS.help for information about editing NEWS using ReST.)
+What's New in Python 3.0a3?
+===========================
+
+*Release data: XX-XXX-2008*
+
+Core and Builtins
+-----------------
+
+- Issue #1573: Improper use of the keyword-only syntax makes the parser crash
+
+
+Extension Modules
+-----------------
+
+
+Library
+-------
+
+
What's New in Python 3.0a2?
+===========================
*Release date: 07-Dec-2007*