rocky
a878a74a12
Fixes #501
2024-08-27 11:21:56 -04:00
rocky
8348d86b09
Better annotation parsing for < 3.6
2024-02-11 19:46:13 -05:00
rocky
454fac4adb
Handle 3.3 MAKE_FUNCTION annotation args properly
2024-02-11 11:50:25 -05:00
rocky
dd8ee1466d
Redo uncompyel6 options ...
...
Use click now and make more like decompyle3
2024-02-10 13:24:09 -05:00
rocky
227f494fa8
Double -a option show asm before tokenization
2023-07-04 07:13:54 -04:00
rocky
4b296e1ead
Correct generator function parsing for 3.3..3.5
2023-06-30 15:43:27 -04:00
rocky
568b64b59e
Allow decompilation of older bytecode from 3.9+
2023-06-16 07:30:25 -04:00
rocky
41d26bde79
Lint some files
2023-05-29 11:00:44 -04:00
James Hilliard
6787a582cf
Fix status_msg args
...
Fixes:
uncompyle6/bin/uncompile.py", line 201, in main_bin
mess = status_msg(do_verify, *result)
TypeError: status_msg() takes 5 positional arguments but 6 were given
2022-11-05 18:59:13 -04:00
rocky
a381b4663b
Adapt for recent options changes in
...
-T option structure changed.
2022-01-09 16:01:32 -05:00
rocky
32c4b84458
Better handling of bytecode errors
2021-10-28 18:37:54 -04:00
rocky
d0ca7b0363
Loosen check to allow running from 2.4-3.10
...
We still only can *decompile* 2.4-3.8
2021-10-26 06:21:51 -04:00
Renat Iliev
2b154e0b88
'NoneType' object is not iterable with numproc > 1
...
main calls with source_paths=None, but it needs to be iterable
2021-06-14 19:50:18 +03:00
rocky
70b7e51df6
VERSION -> version
2020-10-31 11:25:06 -04:00
rocky
1ebfde6927
Add tree transformation phase...
...
if ... else if ... -> if ... elif ..
if .. : raise AsssertionError -> assert
Add options --tree=before --tree=after -T expanded to include this
This code ported from decompyle3. x0ret did all the heavy lifting.
2019-08-21 09:00:09 -04:00
rocky
e55a0410c9
weak-verify -> syntax-verify. More bytecode tests
2019-07-01 10:23:43 -04:00
x0ret
9db59f1b80
add support for generated source encoding
2019-05-27 17:19:10 +04:30
rocky
2771cb46ab
short option -T for --tree+
2019-05-21 11:38:43 -04:00
rocky
7f65a8a6dd
3.8 SETUP_EXCEPT removal workaround; reinstate option -c | --compile
2019-04-11 07:19:35 -04:00
rocky
19a95be3ef
WIP - more 3.8 grammar stuff
2019-03-30 00:27:48 -04:00
rocky
7de893730d
main.main parameter "codes" is not used. Note that.
2018-12-25 12:55:40 -05:00
rocky
e3d918df3d
Allow Python 3.0 and fix default param bug in 3.0
2018-06-11 11:33:50 -04:00
rocky
4c74bf1d9d
--tree++ shows template rule when it is used
2018-05-13 14:21:46 -04:00
rocky
7237658f1f
Start to handle 3.7
2018-04-12 23:49:37 -04:00
rocky
8734608929
Small doc typos
2018-04-09 01:36:42 -04:00
rocky
4cbba3d46e
2.7 control flow futzing.
...
Some overall cleanup. But again we need to attack all of this more head on.
Closes Issue #149
2018-02-04 14:20:11 -05:00
rocky
0a12dfb422
Add uncompyle6 option to show fragments
2018-01-29 21:14:34 -05:00
rocky
cb27f244dc
Go over verification routines again
...
Add meager verify-run tests for those versions. More tests will follow
2018-01-24 06:20:38 -05:00
rocky
bd49fcb001
A stray syntax-error bug
2018-01-22 22:13:24 -05:00
rocky
98f9a7d009
Add --weak-verify and --linemap options...
...
Fix bugs in --verify not finding tempfile; remove tempfile
on exit.
2018-01-20 21:55:02 -05:00
Mike Mason
54332ddffb
Corrected python3 import from queue
2017-11-03 09:05:52 -05:00
rocky
01a39bf8ed
Program name was incorrect.
...
uncompile -> uncompyle6
2017-10-11 14:52:42 -04:00
rocky
e6761e13bb
Python flake8 crap
...
Was testing realgud's C-x!8 (goto flake8 warning/error)
2016-12-18 20:18:19 -05:00
rocky
b168e1de55
Can run in Python 3.1 and Python 3.2
2016-12-10 07:30:27 -05:00
rocky
d7f898b4fb
New feature: show line number correspondences
...
Option --linemap on uncompile show how original source-code line numbers
map to uncompiled source lines
2016-11-18 09:02:00 -05:00
rocky
d2ac293cf6
Merge branch 'master' into python-3.0
2016-11-05 21:01:50 -04:00
rocky
cd3cf5ec29
Use L. for line number prefix in asm and AST
2016-11-03 21:26:12 -04:00
rocky
b54a19c6ff
Start Python 3.0 decoding
...
Fix some Python 3.1 bugs
2016-10-24 02:11:26 -04:00
rocky
f41426e94b
Simpify python 2.1 grammar Fix bug with -t ...
...
Wasn't showing source text when -t option was given
2016-10-08 21:52:10 -04:00
rocky
d2b477ae7d
Add tuple comma when not in BUILD_LIST_n
...
Fixes issue #57
bin/uncompile.py: --verify now works on a single bytecode file. We will
set the output to be something created by tempfile.mktemps
2016-10-04 23:58:35 -04:00
rocky
65a16327ce
Moagstar's 3.6 wordcode + formattedValue rules
2016-08-01 03:16:26 -04:00
rocky
95bc1a76cb
Check Python version in uncompile.py
...
Seems this is the only place that uses that.
2016-05-21 04:37:21 -04:00
rocky
68ff878b3e
Small pyflakes stuff
2016-05-20 21:37:46 -04:00
rocky
b69001ccbf
Fix names for <program> -V
2016-05-14 00:53:46 -04:00
rocky
e0eba6998f
Python packaging - yet again.
...
Did I ever mention how much Python sucks at packaging?
2016-05-13 22:59:15 -04:00