creating clean .py

This commit is contained in:
Mysterie 2012-06-05 15:30:48 +02:00
parent b2a0b7201d
commit 322c76f66c
17 changed files with 4 additions and 5 deletions

0
build/lib.linux-i686-2.7/uncompyle2/Parser.py Executable file → Normal file
View File

0
build/lib.linux-i686-2.7/uncompyle2/Scanner25.py Executable file → Normal file
View File

0
build/lib.linux-i686-2.7/uncompyle2/Scanner26.py Executable file → Normal file
View File

1
build/lib.linux-i686-2.7/uncompyle2/Scanner27.py Executable file → Normal file
View File

@ -793,5 +793,4 @@ class Scanner:
elif op == END_FINALLY and i in self.fixed_jumps:
label = self.fixed_jumps[i]
targets[label] = targets.get(label, []) + [i]
print self.structs
return targets

0
build/lib.linux-i686-2.7/uncompyle2/Walker.py Executable file → Normal file
View File

4
build/lib.linux-i686-2.7/uncompyle2/__init__.py Executable file → Normal file
View File

@ -219,7 +219,7 @@ def main(in_base, out_base, files, codes, outfile=None,
if do_verify:
try:
verify.compare_code_with_srcfile(infile, outfile)
print "+++ okay decompyling", infile, __memUsage()
print '# okay decompyling', infile, __memUsage()
okay_files += 1
except verify.VerifyCmpError, e:
verify_failed_files += 1
@ -228,5 +228,5 @@ def main(in_base, out_base, files, codes, outfile=None,
print >>sys.stderr, e
else:
okay_files += 1
print "+++ okay decompyling", infile, __memUsage()
print '# okay decompyling', infile, __memUsage()
return (tot_files, okay_files, failed_files, verify_failed_files)

0
build/lib.linux-i686-2.7/uncompyle2/disas.py Executable file → Normal file
View File

0
build/lib.linux-i686-2.7/uncompyle2/magics.py Executable file → Normal file
View File

0
build/lib.linux-i686-2.7/uncompyle2/opcode/__init__.py Executable file → Normal file
View File

View File

View File

View File

View File

View File

0
build/lib.linux-i686-2.7/uncompyle2/spark.py Executable file → Normal file
View File

0
build/lib.linux-i686-2.7/uncompyle2/verify.py Executable file → Normal file
View File

View File

@ -219,7 +219,7 @@ def main(in_base, out_base, files, codes, outfile=None,
if do_verify:
try:
verify.compare_code_with_srcfile(infile, outfile)
print "+++ okay decompyling", infile, __memUsage()
print '# okay decompyling', infile, __memUsage()
okay_files += 1
except verify.VerifyCmpError, e:
verify_failed_files += 1
@ -228,5 +228,5 @@ def main(in_base, out_base, files, codes, outfile=None,
print >>sys.stderr, e
else:
okay_files += 1
print "+++ okay decompyling", infile, __memUsage()
print '# okay decompyling', infile, __memUsage()
return (tot_files, okay_files, failed_files, verify_failed_files)