File tree Expand file tree Collapse file tree 3 files changed +30
-1
lines changed
Expand file tree Collapse file tree 3 files changed +30
-1
lines changed Original file line number Diff line number Diff line change 1+ 3.9.1
2+ =====
3+
4+ Lots of changes major changes. track xdis API has changes.
5+
6+ Separate Phases more clearly:
7+ * disassembly
8+ * tokenization
9+ * parsing
10+ * abstracting to AST (more is done in newer projects)
11+ * printing
12+
13+ Although we do not decompile bytecode greater than 3.8, code supports running from up to 3.12.
14+
15+ Many bugs fixed.
16+
17+ A lot of Linting and coding style modernization.
18+
19+ Work done in preparation for Blackhat Asia 2024
20+
1213.9.0
222=====
323
Original file line number Diff line number Diff line change 1818source $PACKAGE /version.py
1919echo $VERSION
2020
21+ PYVERSIONS=3.11
2122for pyversion in $PYVERSIONS ; do
2223 if ! pyenv local $pyversion ; then
2324 exit $?
Original file line number Diff line number Diff line change 1212 print (mess )
1313 raise Exception (mess )
1414
15- setup (packages = ["decompyle3" ])
15+ setup (
16+ packages = [
17+ "decompyle3" ,
18+ "decompyle3.bin" ,
19+ "decompyle3.parsers" ,
20+ "decompyle3.scanners" ,
21+ "decompyle3.semantics" ,
22+ ]
23+ )
You can’t perform that action at this time.
0 commit comments