pyminifier
pyminifier copied to clipboard
Semantics of import aren't preserved during obfuscation
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.