Files
Pyarmor-Static-Unpack-1shot/tests/tokenized/try_except_finally.txt
Michael Hansen 391ba6502d Migrate additional tests which previously didn't have reference source to
the new test system, including new reference source.
2019-10-07 17:06:08 -07:00

20 lines
297 B
Plaintext

try : <EOL>
<INDENT>
import sys <EOL>
try : <EOL>
<INDENT>
print 'something else' <EOL>
<OUTDENT>
except AssertionError : <EOL>
<INDENT>
print '...failed' <EOL>
<OUTDENT>
<OUTDENT>
except ImportError : <EOL>
<INDENT>
print 'Oh Noes!' <EOL>
<OUTDENT>
finally : <EOL>
<INDENT>
print 'Exiting' <EOL>