summaryrefslogtreecommitdiff
path: root/docs/examples/userguide/language_basics/kwargs_2.pyx
blob: a2c639ea665c3ccdec5ca590e522d2dbd85a14d4 (plain)
1
2
3
4
5
def g(a, b, *, c, d):
    ...

# We cannot call g with less verbosity than this.
foo = g(4.0, "something", c=68, d="other")