Last active
May 2, 2019 04:00
-
-
Save rokob/cd017ee3b605cee96cf0f09aba388107 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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