Files
Pyarmor-Static-Unpack-1shot/tests/tokenized/test_class_method_py3.txt

16 lines
243 B
Plaintext
Raw Normal View History

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