11 lines
139 B
Python
11 lines
139 B
Python
from trace_commentor import Commentor
|
|
|
|
|
|
def test_function_def():
|
|
|
|
@Commentor()
|
|
def target():
|
|
pass
|
|
|
|
print(target())
|