Files
openide/python/testData/paramInfo/StarredParamAndArg.py
2009-07-17 23:24:10 +04:00

8 lines
80 B
Python

def foo(a, b, *c):
pass
x = (5,6)
foo(<arg1>1, <arg2>2, <arg3>4, <arg4>*x)