Skip to content

Instantly share code, notes, and snippets.

@dmendiza
Created March 27, 2014 15:38
Show Gist options
  • Save dmendiza/9810391 to your computer and use it in GitHub Desktop.
Save dmendiza/9810391 to your computer and use it in GitHub Desktop.
def my_method_with_except():
try:
dangerous_method()
except Exception:
raise
def my_method_without_except():
dangerous_method()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment