liftoff / pyminifier

Pyminifier is a Python code minifier, obfuscator, and compressor.
GNU General Public License v3.0
1.45k stars 223 forks source link

Assignment to tuple causes Indentation error #82

Open t-ikegami opened 7 years ago

t-ikegami commented 7 years ago

In pyminifier 2.2, indentation is wrongly removed for tuple assignments like: def func() : a = b (a, b) = (10, 20)

It is fixed by modifying minification.py:225 as: `