Skip to content

Instantly share code, notes, and snippets.

@javouhey
Created August 5, 2011 09:36
Show Gist options
  • Save javouhey/1127204 to your computer and use it in GitHub Desktop.
Save javouhey/1127204 to your computer and use it in GitHub Desktop.
try:
raise ValueError('babi')
except:
import sys
a = sys.exc_info()
print a
(<type 'exceptions.ValueError'>, ValueError('babi',), <traceback object at 0x95e80a4>)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment