i have a code something like this:
a=1.
b=2.
c=(a,b)
def test((a,b),c):
return a+b+c
test(c,5)
However, it says that there is a syntax error in second paranthesis of: def test((a,b),c)
Any suggestions? (btw this works fine for 2.6.1, i have 3.3.2, i could not find any syntax change regarding this)