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

9 lines
70 B
Python

a = 10
b = [10, 20, 30]
if a in b:
pass
if a not in b:
pass