trace_commentor/tests/test_expressions.py
Yuyao Huang 3879263121 BinOp()
2024-04-19 14:17:29 +08:00

11 lines
133 B
Python

from trace_commentor import Commentor
def test_binop():
@Commentor()
def target():
1 + 1
print(target())