DEBSOURCES
Skip Quicknav
sources / cython / 3.0.11%2Bdfsg-2 / tests / compile / gencall.pyx
12345678910111213
# mode: compile def f(x, y): x = y def z(a, b, c): f(x = 42, y = "spam") f(*a) f(**b) f(x = 42, **b) f(a, *b) f(a, x = 42, *b, **c)