summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2007-12-08 22:11:32 (GMT)
committerChristian Heimes <christian@cheimes.de>2007-12-08 22:11:32 (GMT)
commitbc8734174a0cd6513e55627464038aed22b3c32c (patch)
tree3d872c8ec94e9a6510ccebbf9381f7c0968debc6 /Misc/NEWS
parentda65f6078359a3906366300544eb3692e3c2a0f8 (diff)
downloadcpython-bc8734174a0cd6513e55627464038aed22b3c32c.zip
cpython-bc8734174a0cd6513e55627464038aed22b3c32c.tar.gz
cpython-bc8734174a0cd6513e55627464038aed22b3c32c.tar.bz2
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 b3905c6..f5ab868 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*