Files
Pyarmor-Static-Unpack-1shot/tests/tokenized/contains_op.txt
John Richards 25f44aa079 Adds support for CONTAINS_OP opcode
Mentioned in:
- #190
- #191
- #195
2021-10-10 00:40:39 -04:00

10 lines
130 B
Plaintext

a = 10 <EOL>
b = [ 10 , 20 , 30 ] <EOL>
if a in b : <EOL>
<INDENT>
pass <EOL>
<OUTDENT>
if a not in b : <EOL>
<INDENT>
pass <EOL>