Skip to content

Instantly share code, notes, and snippets.

@wraithan
Created November 9, 2011 03:31
Show Gist options
  • Select an option

  • Save wraithan/1350252 to your computer and use it in GitHub Desktop.

Select an option

Save wraithan/1350252 to your computer and use it in GitHub Desktop.
>>> def f():
... try:
... return 10
... except:
... return 20
... finally:
... return 30
...
>>> f()
30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment