You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
15 lines
148 B
Plaintext
15 lines
148 B
Plaintext
def A(a,b,(x,y,z),c):
|
|
pass
|
|
|
|
def B(a,b=42,(x,y,z)=(1,2,3),c=17):
|
|
pass
|
|
|
|
def C((x,y,z)):
|
|
pass
|
|
|
|
def D((x,)):
|
|
pass
|
|
|
|
def E((x)):
|
|
pass
|