Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/RustPython/RustPython
/ va
Function
va
extra_tests/snippets/syntax_function_args.py:26–31 ·
view source on GitHub ↗
(a, b=2, *c, d, **e)
Source
from the content-addressed store, hash-verified
24
25
26
def
va(a, b=2, *c, d, **e):
27
assert a == 1
28
assert b == 22
29
assert c == (3, 4)
30
assert d == 1337
31
assert e[
'f'
] == 42
32
33
34
va(1, 22, 3, 4, d=1337, f=42)
Callers
1
syntax_function_args.py
File · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected