13 lines
155 B
Python
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())
|