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