Skip to content

Instantly share code, notes, and snippets.

@tomleo
Last active December 13, 2015 18:49
Show Gist options
  • Save tomleo/4958306 to your computer and use it in GitHub Desktop.
Save tomleo/4958306 to your computer and use it in GitHub Desktop.
def divide(a, b):
return a/b
def calculate(a, b):
try:
result = divide(a, b)
except:
raise Exception('You Done Goofed')
return result
def divide(a, b):
return a/b
def calculate(a, b):
try:
result = divide(a, b)
except:
raise
return result
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment