Files
python-uncompyle6/test/simple_source/exception/02_try_finally.py
rocky 9491c67779 More COME_FROM's in Python 3...
Need this to find boundaries of simple if better
2017-02-20 04:17:46 -05:00

12 lines
162 B
Python

# From 2.6.9 cmd.py
try:
if __file__:
x = 2
x = 3
finally:
if x and __file__:
try:
x = 1
except:
pass