Skip to content

Instantly share code, notes, and snippets.

@ultratude
Created June 20, 2015 06:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ultratude/c43a89d1ce03220d6a0c to your computer and use it in GitHub Desktop.
Save ultratude/c43a89d1ce03220d6a0c to your computer and use it in GitHub Desktop.
import sys
def test1():
try:
raise Exception("tessssssssssssst")
except Exception as e:
def test2():
print(e)
return test2
test1()()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment