Files
Pyarmor-Static-Unpack-1shot/tests/input/unpack_assign.py
2019-10-04 14:33:38 -07:00

8 lines
201 B
Python

x = (1, 2, 3)
a, b, c = x
#c, b, a = (a, b, c) # This gets optimized by newer Python compilers...
x = (1,)
a, = x
#c, = (a,) # This gets optimized by newer Python compilers...