Skip to content

Instantly share code, notes, and snippets.

@sairion
Created November 12, 2015 11:22
Show Gist options
  • Save sairion/21ea098dfc8437985258 to your computer and use it in GitHub Desktop.
Save sairion/21ea098dfc8437985258 to your computer and use it in GitHub Desktop.
traceback
try:
errornous_block()
except:
import sys, traceback, pdb
type, value, tb = sys.exc_info()
traceback.print_exc()
pdb.post_mortem(tb)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment