trace_commentor/tests/test_definitions.py
2024-04-19 13:24:36 +08:00

11 lines
139 B
Python

from trace_commentor import Commentor
def test_function_def():
@Commentor()
def target():
pass
print(target())