Help for this page
def foo(one,two=None,*args,**kwargs) : pass
foo(1) foo(1,2) foo(two=3,one=4,'fubar',three=42)