Skip to content

Instantly share code, notes, and snippets.

@simplue
Created November 14, 2018 10:24
Show Gist options
  • Select an option

  • Save simplue/12820e73eb6e10992c5cdcc45a2e65c7 to your computer and use it in GitHub Desktop.

Select an option

Save simplue/12820e73eb6e10992c5cdcc45a2e65c7 to your computer and use it in GitHub Desktop.
py_try.py
def foo():
try:
if 1:
print('TRY')
return 1
print('AFTER RETURN')
except:
print('EXCEPT')
finally:
print('FINALLY')
# no reach
print('OUT OF TRY')
> TRY
> FINALLY
> 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment