Files
Pyarmor-Static-Unpack-1shot/pycdc/tests/input/test_class_method.py
2025-09-13 14:39:22 +08:00

9 lines
176 B
Python

class MyClass:
def method(self, i):
if i is 5:
print('five')
elif i is not 2:
print('not two')
else:
print('2')