uncompyle2
uncompyle2 copied to clipboard
uncompyle2
This should fix #14
There are a number of bugs in the unmaintained forks of uncompyle2. I'd like folks to know what those issues are but reporting them in all the forks is a...
# Can't uncompyle routers2.pyc Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/uncompyle2/__init__.py", line 203, in main uncompyle_file(infile, outstream, showasm, showast) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/uncompyle2/__init__.py", line 135, in uncompyle_file version, co = _load_module(filename) File...
Hi, i got this error when i use uncompyle2: Traceback (most recent call last): File "/Library/Python/2.7/site-packages/uncompyle2/**init**.py", line 203, in main uncompyle_file(infile, outstream, showasm, showast) File "/Library/Python/2.7/site-packages/uncompyle2/**init**.py", line 140, in uncompyle_file...
There is how to reproduce the issue, with the latest version from the repository: ``` $ cat stupid_test.py ``` ``` python def test_dummy(): assert True ``` ``` $ py.test -q...
Uncompyle2 in scripts folder aint a .py file. and when i run 'uncompyle2 -h' i get C:\Program Files (x86)\Console2>uncompile2 -h Traceback (most recent call last): File "C:\Python\Python27\Scripts\uncompile2.py", line 55, in...
uncompyle2 cli ``` uncompyle2 --showasm xxx.pyc ... 13665 LOAD_CONST 43190 13668 LOAD_CONST 44321 13671 LOAD_CONST 44322 13674 LOAD_CONST 44333 13677 LOAD_CONST 44334 13680 LOAD_CONST 44337 13683 LOAD_CONST 44442 13686 LOAD_CONST...
WHEN I TRIED TO UNCOMPYLE PYC FILE. IT SHOWS AN ERROR LIKE # Embedded file name: /storage/sdcard0/com.hipipal.qpyplus/projects/Simple Server/ServerHandler.py Traceback (most recent call last): File "C:\Users\DON OMET HASAN\Downloads\omet.py", line 2, in...
Hey, not exactly sure where to post this so I figured I'd make an issue. Is 2.4 support planned to be made? I have a project that requires a TON...
Code with assert statements gets turned into non valid python code. $ cat test_assert.py assert isinstance(1, int) $ uncompyle2 test_assert.pyc raise isinstance(1, int) or AssertionError $ python test_assert_dis.py Traceback (most...