trace_commentor/experiment.py
2024-04-22 15:52:10 +08:00

14 lines
170 B
Python

from tests.test_utils import *
def test():
@Commentor()
def target(a, d=1, *b, c, k=1):
return a + k
print(target(1, 2, 3, 4, c=5, k=2))
test()