Files
Pyarmor-Static-Unpack-1shot/tests/input/is_op.py
John Richards 588f24c872 Adds support for IS_OP opcode
Mentioned in:
- #190
- #191
- #195
2021-10-07 20:29:18 -04:00

10 lines
61 B
Python

a = 10
b = 10
if a is b:
pass
if a is not b:
pass