Python 2.x
def function(a, (b, c)): # pattern extract matches a strictly two-elements
Python 3.x
def function(a, b_c): # not as clean, nor as expressive