Skip to content

Instantly share code, notes, and snippets.

@rokob
Last active May 2, 2019 04:00
Show Gist options
  • Save rokob/cd017ee3b605cee96cf0f09aba388107 to your computer and use it in GitHub Desktop.
Save rokob/cd017ee3b605cee96cf0f09aba388107 to your computer and use it in GitHub Desktop.
def main():
try:
other()
except Exception as e:
pass
def other():
raise Exception('woof')
def main():
other()
def other():
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment