Files
Pyarmor-Static-Unpack-1shot/tests/input/test_class_method.py
Michael Hansen 8eb18de269 Update tests to show that #39 is resolved, and add dummy support for
STORE_LOCALS used in Python 3.0-3.3.

Closes #39
Closes #63
2020-10-22 09:06:57 -07: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')