diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-07-01 20:03:27 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-07-01 20:03:27 (GMT) |
commit | 07a1f94fb70b99bc6760df57bb51542ed5dac906 (patch) | |
tree | 34ca868aaf902375dacdb3f77b32c0cd583de363 /Lib/test/test_syntax.py | |
parent | 13e89463e3cfe2a349307ee09217c17fa7274bad (diff) | |
download | cpython-07a1f94fb70b99bc6760df57bb51542ed5dac906.zip cpython-07a1f94fb70b99bc6760df57bb51542ed5dac906.tar.gz cpython-07a1f94fb70b99bc6760df57bb51542ed5dac906.tar.bz2 |
Merged revisions 64622 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r64622 | benjamin.peterson | 2008-07-01 14:34:52 -0500 (Tue, 01 Jul 2008) | 1 line
#3219 repeated keyword arguments aren't allowed in function calls anymore
........
Diffstat (limited to 'Lib/test/test_syntax.py')
-rw-r--r-- | Lib/test/test_syntax.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/test/test_syntax.py b/Lib/test/test_syntax.py index 11ca4ea..c82787e 100644 --- a/Lib/test/test_syntax.py +++ b/Lib/test/test_syntax.py @@ -470,6 +470,12 @@ Make sure that the old "raise X, Y[, Z]" form is gone: ... SyntaxError: invalid syntax + +>>> f(a=23, a=234) +Traceback (most recent call last): + ... +SyntaxError: keyword argument repeated + """ import re |