summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bytecode/mp-tests/fun4.py
blob: b8d2ac159ea46c08c77cc17cbe99d12772509c45 (plain) (blame)
1
2
3
4
5
def f(a, b=1, *c, d):
    pass
    #print(a,b,c,d) # bug in uPy!
f = lambda a, b, *c, d: None # default arg
#f = lambda a, b=1, *c, d: None # default arg for lambda not implemented