06030cbbe3980a3b96f8bbdab8a2a2906e4a662d
[cython.git] / tests / compile / gencall.pyx
1 def f(x, y):
2     x = y
3
4 def z(a, b, c):
5     f(x = 42, y = "spam")
6     f(*a)
7     f(**b)
8     f(x = 42, **b)
9     f(a, *b)
10     f(a, x = 42, *b, **c)
11