pyobfuscate icon indicating copy to clipboard operation
pyobfuscate copied to clipboard

pyobfuscate

Results 20 pyobfuscate issues
Sort by recently updated
recently updated
newest added

Traceback (most recent call last): File "/usr/bin/pyobfuscate", line 1170, in main() File "/usr/bin/pyobfuscate", line 1145, in main cw = CSTWalker(source_no_encoding, pae.pubapi) File "/usr/bin/pyobfuscate", line 130, in **init** self.walk(elements, [self.symtab]) File...

Moved from http://bugzilla.lysator.liu.se/show_bug.cgi?id=1691: ``` Opened: 2010-09-15 00:08 ``` IE. class foo: @staticmethod def bar(x): pass ------- Comment #1 From Al Gettier 2010-09-15 00:11:52 [reply] ------- class foo: @staticmethod def bar():...

From http://bugzilla.lysator.liu.se/show_bug.cgi?id=1606: Here is the source code "setup.py": from distutils.core import setup import py2exe setup( # The first three parameters are not required, if at least a # 'version' is...

Moved from http://bugzilla.lysator.liu.se/show_bug.cgi?id=1605: The following code d = {"a": "A", "b": "B", # comment "c": "C"} is not correctly handled: the last line containing the dictionary key "c" is ignored,...

Moved from http://bugzilla.lysator.liu.se/show_bug.cgi?id=1603: Dear Sirs: the following Python code line f = lambda x: [v for v in x] does not get through the pyobfuscate and generates an error when...

From http://bugzilla.lysator.liu.se/show_bug.cgi?id=1585: If you have a construction like this: foo = [1, # My number one 2, 3] the obfuscated code will look like: oo000 = [ 1 ,if 9...

Moved from http://bugzilla.lysator.liu.se/show_bug.cgi?id=1583: As seen by the below example, pyobfuscate incorrectly obfuscates function parameters when they are used in lambdas. cat ~/slask/pyobf_lambda.py def foo(bar): lambda x: x.startswith(bar) pyobfuscate ~/slask/pyobf_lambda.py def...

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):...

Moved from http://bugzilla.lysator.liu.se/show_bug.cgi?id=1359: pyobfuscate doesn't handle constructs like: print "foo bar %(somevariable)s" % locals()

How can I fix the issue where symbols and parsers cannot be used in Python 3.10, resulting in the functionality being unusable.