trace_commentor/experiment.py
2024-04-19 19:16:47 +08:00

13 lines
155 B
Python

from tests.test_utils import *
@Commentor(fmt=[
(type(None), lambda o: None),
])
def function():
x = 2
print(x == 2)
print(function())