Issue 22944: Python argument tuple unpacking (original) (raw)
Python already has tuple unpacking in many places, I wonder if this has been considered for arguments yet, it seems rather convenient and a natural extension to me.
Here's what I mean:
def func((a, b, c)): print(a, b, c)
func((1, 2, 3))
should print "1 2 3"