11 lines
132 B
Python
11 lines
132 B
Python
from trace_commentor import Commentor
|
|
|
|
|
|
def test_constant():
|
|
|
|
@Commentor()
|
|
def target():
|
|
1
|
|
|
|
print(target())
|