14 lines
170 B
Python
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()
|