You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 01:09:52 +08:00
10 lines
190 B
Python
10 lines
190 B
Python
# Bug in Python 3.5 is getting the two star'd arguments right.
|
|
def sum(a,b,c,d):
|
|
return a + b + c + d
|
|
|
|
args=(1,2)
|
|
sum(*args, *args)
|
|
|
|
# FIXME: this is handled incorrectly
|
|
# (*c,) = (3,4)
|