liftoff / pyminifier

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

Add option for making one liners #5

Open rominf opened 10 years ago

rominf commented 10 years ago

Linear lines of code can be converted into one liner with semicolons:

op1
op2
op3

to

op1;op2;op3
liftoff commented 10 years ago

I've thought about doing this before. Might as well give it a try.