trace_commentor/experiment.py
2024-04-19 18:51:21 +08:00

16 lines
226 B
Python

from tests.test_utils import *
@Commentor(fmt=[
(type(None), lambda o: None),
])
def function():
mystring = 'hello'
print(mystring)
mystring = "hello"
print(mystring)
return 1
print(function())