zrax / pycdc

C++ python bytecode disassembler and decompiler
GNU General Public License v3.0
2.92k stars 584 forks source link

add support for `WITH_CLEANUP_START`,`WITH_CLEANUP_FINISH` #460

Closed TiZCrocodile closed 3 months ago

TiZCrocodile commented 3 months ago

I also checked and source of:

try:
    print('try')
except:
    print('except')
else:
    print('else')

results in:

try:
    print('try')
except:
    print('except')

print('else')

so we need to fix this anyways :) .

zrax commented 3 months ago

You can move the compiled tests to tests/xfail/ if their output is known to be incorrect for now