You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-02 16:44:46 +08:00
22 lines
248 B
Python
22 lines
248 B
Python
def x0():
|
|
pass
|
|
|
|
def x1(a):
|
|
pass
|
|
|
|
|
|
def x2(a=5):
|
|
pass
|
|
|
|
def x3(a, b, c=5):
|
|
pass
|
|
|
|
def x4(a, b=5, **c):
|
|
pass
|
|
|
|
# Had a bug in 2.x where
|
|
# we weren't picking up **kwds when
|
|
# it was the sole parameter
|
|
def funcattrs(**kwds):
|
|
return
|