blob: 8905864a91455eba973d863eac155e5fc6b413fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  | 
from test_support import verbose, TestFailed
if verbose:
    print 'Running test on duplicate arguments'
try:
    exec('def f(a, a): pass')
    raise TestFailed, "duplicate arguments"
except SyntaxError:
    pass
try:
    exec('def f(a = 0, a = 1): pass')
    raise TestFailed, "duplicate keyword arguments"
except SyntaxError:
    pass
  |