pyminifier icon indicating copy to clipboard operation
pyminifier copied to clipboard

Semantics of import aren't preserved during obfuscation

Open rix0rrr opened this issue 7 years ago • 0 comments

If I do

import botocore
import botocore.exceptions

This gets obfuscated to:

import botocore
x=botocore.exceptions

But that is not the same! The botocore.exceptions module definitely needs an import statement, otherwise it will not be found.

rix0rrr avatar Mar 16 '18 13:03 rix0rrr