We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Moved from http://bugzilla.lysator.liu.se/show_bug.cgi?id=1393:
Opened: 2004-08-01 01:07
see the example:
def test1(): a='apple' def test2(): print a test2()
class foo: def init(self): pass
def test3(self,arg): pass
def test4(self): self.test3(1) map(lambda x:self.test3(x),[1,2,3])
this example obfuscates to:
def oo000 ( ) : ii = 'apple' def oOOo ( ) : print a oOOo ( ) class IIi1IiiiI1Ii : def init ( self ) : pass def test3 ( self , arg ) : pass def test4 ( self ) : self . test3 ( 1 ) map ( lambda O0oO : o0oO0 . test3 ( O0oO ) , [ 1 , 2 , 3 ] )
there are two errors:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Moved from http://bugzilla.lysator.liu.se/show_bug.cgi?id=1393:
see the example:
def test1():
a='apple'
def test2():
print a
test2()
class foo:
def init(self):
pass
def test3(self,arg):
pass
def test4(self):
self.test3(1)
map(lambda x:self.test3(x),[1,2,3])
this example obfuscates to:
def oo000 ( ) :
ii = 'apple'
def oOOo ( ) :
print a
oOOo ( )
class IIi1IiiiI1Ii :
def init ( self ) :
pass
def test3 ( self , arg ) :
pass
def test4 ( self ) :
self . test3 ( 1 )
map ( lambda O0oO : o0oO0 . test3 ( O0oO ) , [ 1 , 2 , 3 ] )
there are two errors:
The text was updated successfully, but these errors were encountered: