Files
python-uncompyle6/test/simple_source/exception/05_try_except.py
rocky 7a2703634f Fix up looping by reinstating JUMP_ABSOLUTE -> JUMP_BACK or CONTINUE
get jump offsets into jump attributes. Fix up 3.2 scanner paritally
and use that in 3.4 for in cross version disassembly.
2015-12-26 03:06:03 -05:00

22 lines
348 B
Python

def handle(module):
try:
module = 1
except ImportError as exc:
module = exc
return module
def handle2(module):
if module == 'foo':
try:
module = 1
except ImportError as exc:
module = exc
return module
try:
pass
except ImportError as exc:
pass
finally:
y = 1