53 lines
907 B
Python
53 lines
907 B
Python
from test_support import verbose, TestFailed
|
|
|
|
if verbose:
|
|
print 'Running tests on argument handling'
|
|
|
|
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
|
|
|
|
try:
|
|
exec 'def f(a): global a; a = 1'
|
|
raise TestFailed, "variable is global and local"
|
|
except SyntaxError:
|
|
pass
|
|
|
|
print "testing complex args"
|
|
|
|
def comp_args((a, b)):
|
|
print a,b
|
|
|
|
comp_args((1, 2))
|
|
|
|
def comp_args((a, b)=(3, 4)):
|
|
print a, b
|
|
|
|
comp_args((1, 2))
|
|
comp_args()
|
|
|
|
def comp_args(a, (b, c)):
|
|
print a, b, c
|
|
|
|
comp_args(1, (2, 3))
|
|
|
|
def comp_args(a=2, (b, c)=(3, 4)):
|
|
print a, b, c
|
|
|
|
comp_args(1, (2, 3))
|
|
comp_args()
|
|
|
|
try:
|
|
exec 'def f(a=1, (b, c)): pass'
|
|
raise TestFailed, "non-default args after default"
|
|
except SyntaxError:
|
|
pass
|