rocky
5df57489b4
CI woes - need new xdis
...
Remove 1.0 os.pyc until I can investigate.
It works locally though
2022-04-30 20:50:28 -04:00
rocky
9aba1cc3af
Bytecode 1.x fixes
2022-04-30 20:36:43 -04:00
rocky
eba0d37d0f
Improve Python 1.x decompiling
...
Still has bugs, but is much better.
2022-04-30 05:54:22 -04:00
rocky
5e1ba2baa1
Split long lines in n_const_list
2022-04-28 18:03:15 -04:00
rocky
f35231a6f5
Correct bug in long literal replacement for 2.6-7
2022-04-28 17:28:09 -04:00
rocky
37ea469ce6
One more 2.4 test
2022-04-28 17:11:17 -04:00
rocky
8e5faa933f
Handle long 2.x bytecode literals more efficiently
2022-04-27 13:47:56 -04:00
rocky
cfd6166d8d
Small doc corrections
2022-04-27 05:07:07 -04:00
rocky
a356a8e0ee
Reinstante pyenvlib
2022-04-27 03:39:05 -04:00
rocky
152de50f90
Revise docstring explaiing pydisassemble
2022-04-26 18:12:26 -04:00
rocky
1c49eb5989
Revise what pydisassemble is about
2022-04-26 18:09:16 -04:00
rocky
c25fa61e33
Start handling BUILD_MAP (a class of dict)
2022-04-26 15:37:42 -04:00
R. Bernstein
81ff994a41
Merge pull request #394 from rocky/long-collection-python3
...
Long collection python3
2022-04-26 03:18:16 -04:00
rocky
d48801964c
Use attr insead of pattrr for non-strings
2022-04-26 03:13:27 -04:00
rocky
4879a60ecc
Some bugs creating token stream ..
...
from instructions.
2022-04-25 17:39:39 -04:00
rocky
bf58fb9cf2
WIP - extend fast long-literals into older Python3
2022-04-25 08:06:46 -04:00
rocky
c6642f5899
Revise "ingest" docstring
2022-04-25 07:42:56 -04:00
R. Bernstein
13266d1b56
Merge pull request #393 from rocky/speedup-long-collections
...
Speedup long collections
2022-04-24 18:00:11 -04:00
rocky
e564ac3ab1
Go over long-literal test
2022-04-24 17:50:32 -04:00
rocky
8cdf741b62
Bugs in long-literal handlin
...
Move n_dict to n_actions and special case n_const_list.
Generalize build_collection out of 3.7+ and into all Pythons
2022-04-24 17:38:35 -04:00
rocky
371138cfbc
handle long literal constants faster
2022-04-24 13:11:20 -04:00
rocky
464801bcb3
Correct type annotation on decompile()
...
Fixes #391
2022-04-21 20:10:33 -04:00
rocky
f3ac70d0ea
test tweak again
2022-04-21 05:34:15 -04:00
rocky
433d7003e0
Add "transfrormd_by" param to SyntaxTree
...
This aligns code more with decompyle3
2022-04-21 05:25:14 -04:00
rocky
c88d9de316
Correct 3.7 "impor"t and "from .. import"
2022-04-20 20:03:28 -04:00
rocky
e2ff909603
Split off (semantic) nonterminal print actions
2022-04-19 16:42:48 -04:00
rocky
3662f3e8c6
Fold in some decompile changes
2022-04-17 12:20:03 -04:00
rocky
c806ef59c6
Update scanner demo code
2022-04-17 11:41:19 -04:00
rocky
f8ae674890
Split out comprehension code..
...
sync with decompile a little better
2022-04-17 10:52:56 -04:00
rocky
1c1752d6d6
Bump testing version ...
...
pyston 2.3 testing
2022-04-17 10:29:23 -04:00
rocky
420d22c094
Correct for pypy 3.7
2022-04-15 08:36:42 -04:00
rocky
faac21d1e4
Bump testing versions
2022-04-15 08:25:38 -04:00
rocky
a26ac79d0f
Sync up decompyle3 customize37 somewhat
2022-04-15 08:22:45 -04:00
rocky
1a673aba40
Reinstate a test
2022-04-13 03:05:04 -04:00
rocky
04510ac2f8
lambda formatting in f-string
...
In a formatted string using "lambda', we should not add "\n".
For example in:
f'{(lambda x:x)("8")!r}'
Adding a "\n" after "lambda x: x" will give an error message:
SyntaxError: f-string expression part cannot include a backslash
2022-04-12 16:49:58 -04:00
rocky
a1fe069c8c
Handle walrus operator
...
Or rather set precedence on call_stmt and expr_stmt
Adjust pytest test_single_compile so it works now
2022-04-12 05:21:13 -04:00
rocky
e7fd592313
Update bug template
2022-04-11 13:06:39 -04:00
rocky
728954295f
Note that you can pay me for personal help
2022-04-10 13:02:58 -04:00
rocky
83ab85353b
Remove a reference to an unset local variable
...
See also https://github.com/rocky/python-uncompyle6/pull/388
2022-04-09 02:29:44 -04:00
rocky
bc71bf7acd
Shorten 10_complex.py
...
Runtime testing took too long because ranges were larger than needed
Also use newer convention for marking runable codes
2022-04-03 06:41:58 -04:00
rocky
9735453283
Small changes
...
test code for pysource and bump lastest testing Python versions
2022-04-01 03:11:59 -04:00
rocky
7f9014fb05
Add Table of Contents
2022-03-12 05:26:01 -05:00
rocky
e14b8dd496
Sync with decompyle3
2022-03-12 05:18:24 -05:00
rocky
aaa737672b
Mention pydeinstaller
2022-03-12 04:56:33 -05:00
R. Bernstein
2198f9bbaa
Update HOW-TO-REPORT-A-BUG.md
2022-03-12 04:52:11 -05:00
R. Bernstein
b7015b16b0
Update HOW-TO-REPORT-A-BUG.md
2022-03-12 04:49:33 -05:00
R. Bernstein
67bb8223d8
Update HOW-TO-REPORT-A-BUG.md
2022-03-12 04:48:07 -05:00
R. Bernstein
2faa7b0597
Update HOW-TO-REPORT-A-BUG.md
2022-03-12 04:43:08 -05:00
R. Bernstein
58f00b1e5b
Update HOW-TO-REPORT-A-BUG.md
2022-03-12 04:39:39 -05:00
rocky
3d24de7ce5
__init__.py lint
2022-03-09 12:16:38 -05:00