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

Function fubar

extra_tests/snippets/syntax_function_args.py:76–79  ·  view source on GitHub ↗
(x, y, obj=None)

Source from the content-addressed store, hash-verified

74
75# star arg after keyword args:
76def fubar(x, y, obj=None):
77 assert x == 4
78 assert y == 5
79 assert obj == 6
80
81rest = [4, 5]
82fubar(obj=6, *rest)

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected