Skip to content

Instantly share code, notes, and snippets.

@tokibito
Created September 10, 2015 05:16
Show Gist options
  • Save tokibito/80ebd4bee4b5bca2eb26 to your computer and use it in GitHub Desktop.
Save tokibito/80ebd4bee4b5bca2eb26 to your computer and use it in GitHub Desktop.
pdb.post_mortem on Exception
try:
import sys, pdb, traceback
spam()
except:
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