Adrian Hänsler
Results
2
comments of
Adrian Hänsler
There is official documentation for opcodes https://docs.python.org/3.11/library/dis.html Compiler output changes with each new version of python. The compiler is getting more and more efficient. Output is less structured and it...
Decompilation doesn't really work for versions >= 3.8. There is new opcodes and compiler output got more efficient/dense. You could try python 3.7, or look at my [PR](https://github.com/zrax/pycdc/pull/270) that fixes...