Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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:
76
def
fubar(x, y, obj=None):
77
assert x == 4
78
assert y == 5
79
assert obj == 6
80
81
rest = [4, 5]
82
fubar(obj=6, *rest)
Callers
1
syntax_function_args.py
File · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected