*args/**kwargs tests for #235 (failing tests)

This commit is contained in:
David Halter
2013-08-06 15:34:12 +04:30
parent 22edd6a149
commit 0dc3d5e195

View File

@@ -228,6 +228,12 @@ exe2['a']
# *args / ** kwargs
# -----------------
def func_without_call(*args, **kwargs):
#? tuple()
args
#? dict()
kwargs
def fu(a=1, b="", *args, **kwargs):
return a, b, args, kwargs