summaryrefslogtreecommitdiff
path: root/docs/examples/userguide/language_basics/kwargs_1.pyx
blob: e5e18c0081d1039173dee821341970576b80107f (plain)
1
2
3
4
5
6
def f(a, b, *args, c, d = 42, e, **kwds):
    ...


# We cannot call f with less verbosity than this.
foo = f(4, "bar", c=68, e=1.0)