Files
Pyarmor-Static-Unpack-1shot/tests/input/if_elif_else.py
Michael Hansen 391ba6502d Migrate additional tests which previously didn't have reference source to
the new test system, including new reference source.
2019-10-07 17:06:08 -07:00

9 lines
166 B
Python

def test(msgtype, flags):
if flags == 1:
msgtype = 1
elif flags == 2:
msgtype = 2
elif flags == 3:
msgtype = 3
return msgtype