Files
Pyarmor-Static-Unpack-1shot/tests/input/simple_const.py
Michael Hansen 31d907118a Add a new unit test framework that actually checks the output of
decompiled sources against an expected result.
2019-10-03 15:33:52 -07:00

13 lines
248 B
Python

# Description: Simple constants applicable to any Python version
# Valid Pythons: all
# Note: Python 1.0 will insert an implied "print" statement into each line
a = 42
b = 3.14159
c = "test"
d = (1, 2)
e = (3,)
f = [1, 2]
g = {'key': 42}