Files
Pyarmor-Static-Unpack-1shot/tests/input/list_extend.py
John Richards a504452b7b Adds support for LIST_EXTEND opcode
Addresses #199
2021-10-07 01:51:53 -04:00

9 lines
124 B
Python

a = [1, 2, 3]
b = ['4', 5, 6]
c = [7, (8, 9, 10)]
d = [None]
e = [('a', 'b', 'c')]
f = [a, b]
g = []
a = [None, None, None]