summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-03-05 01:50:33 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-03-05 01:50:33 (GMT)
commitd21fb4c2e097dd72d1772a6f0325cc45f9b20f30 (patch)
tree3a41c2f003bd75ac8855abcab177010dc7577760 /Misc
parent3710a135067f72322d07df4f5916bcec61ae25d5 (diff)
downloadcpython-d21fb4c2e097dd72d1772a6f0325cc45f9b20f30.zip
cpython-d21fb4c2e097dd72d1772a6f0325cc45f9b20f30.tar.gz
cpython-d21fb4c2e097dd72d1772a6f0325cc45f9b20f30.tar.bz2
Issue#2238: some syntax errors from *args or **kwargs expressions
would give bogus error messages, because of untested exceptions:: >>> f(**g(1=2)) XXX undetected error Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: 'int' object is not iterable instead of the expected SyntaxError: keyword can't be an expression Will backport.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4fac859..4992513 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -9,6 +9,12 @@ What's New in Python 2.6 alpha 2?
*Release date: XX-XXX-2008*
+Core and builtins
+-----------------
+
+- Issue #2238: Some syntax errors in *args and **kwargs expressions could give
+ bogus error messages.
+
What's New in Python 2.6 alpha 1?
=================================