diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2007-12-09 21:49:48 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2007-12-09 21:49:48 (GMT) |
commit | 40d3a67a190ad1e1f49e123072abd7f4757fdf22 (patch) | |
tree | d1af05e91e318b9c8f6c1394f9eb688a929fb6a9 /Lib/test/test_ast.py | |
parent | 3279b5df3c41f5a6a431e60dcca57cdcdb7808e3 (diff) | |
download | cpython-40d3a67a190ad1e1f49e123072abd7f4757fdf22.zip cpython-40d3a67a190ad1e1f49e123072abd7f4757fdf22.tar.gz cpython-40d3a67a190ad1e1f49e123072abd7f4757fdf22.tar.bz2 |
Issue #1573, second attempt:
"def f(*, **kw)" now raises a SyntaxError.
Diffstat (limited to 'Lib/test/test_ast.py')
-rw-r--r-- | Lib/test/test_ast.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_ast.py b/Lib/test/test_ast.py index 03a877b..4883ed5 100644 --- a/Lib/test/test_ast.py +++ b/Lib/test/test_ast.py @@ -58,9 +58,6 @@ exec_tests = [ "break", # Continue "continue", - # kw only funcs - "def f(*, kw=1): pass", - "def f(*, **kw): pass", ] # These are compiled through "single" |