Files
python-uncompyle6/test/simple_source/stmts/05_try_finally_pass.py
rocky c58481a9eb More Python 2 and 3 deparsing bugs fixed
* while + if break
* try + finall /pass
2016-05-05 20:56:41 -04:00

11 lines
209 B
Python

# Tests and empty finally section
# tryfinallystmt ::= SETUP_FINALLY e_suite_stmts_opt
# POP_BLOCK LOAD_CONST COME_FROM e_suite_stmts_opt END_FINALLY
#
try:
pass
finally:
pass
pass