pycdc
pycdc copied to clipboard
C++ python bytecode disassembler and decompiler
I tried to decompile a .pyc file to .py but I get a message saying its a unsupported opcode. I did some research and found out that the code line...
I'm trying to use pycdc on file which apparently contains lambda (not sure what it doing). During decoding it pycdc output `Url = (lambda` and crashing. Crashing point within `ASTree.cpp`:...
how to install pycdc in windowns
Hi, would be great if these could be added. Thanks

Why I am able to use pycdas with my file, but when pycdas is used i got the following error. ``` # Source Generated with Decompyle++ # File: siemensExtractor.pyc (Python...
I found it useful to see assembly and block scopes next to each other. The PR changes some disassembly functions to output strings instead of directly writing to the stdout....
Python 3.8 adds "=" to its format specifiers. See https://docs.python.org/3/whatsnew/3.8.html#f-strings-support-for-self-documenting-expressions-and-debugging Here is an example program that can be used for testing: ``` # Tests new "debug" format new in 3.8....
``` ~/test >> cat unit.py def anu(d, **s): print(d, s) anu(1, title='sip', style='bold') ~/test >> python3 unit.py 1 {'title': 'sip', 'style': 'bold'} ~/test >> python3 unit.pyc 1 {'title': 'sip', 'style':...
…ty vector' I really haven't read through the code properly but this should prevent a runtime error from happening, the code has been tested and is working. (There were open...