Files
Pyarmor-Static-Unpack-1shot/tests/25_test_class_method.ref.py
2016-09-08 09:59:10 -07:00

9 lines
175 B
Python

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