Open rix0rrr opened 6 years ago
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.
botocore.exceptions
import
If I do
This gets obfuscated to:
But that is not the same! The
botocore.exceptions
module definitely needs animport
statement, otherwise it will not be found.