MCPcopy Index your code
hub / github.com/RustPython/RustPython / va3

Function va3

extra_tests/snippets/syntax_function_args.py:51–52  ·  view source on GitHub ↗
(x, *, a, b=2, c=9)

Source from the content-addressed store, hash-verified

49
50
51def va3(x, *, a, b=2, c=9):
52 return x + b + c
53
54
55assert va3(1, a=1, b=10) == 20

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected