pdb has two very helpful functions (post_mortem and pm) which make it easy to launch a debugger after an exception has occurred. It would be extremely nice if bpdb could be a drop-in replacement like this:
try:
import bpdb as pdb
except ImportError:
import pdb
Reactions are currently unavailable
pdb has two very helpful functions (post_mortem and pm) which make it easy to launch a debugger after an exception has occurred. It would be extremely nice if bpdb could be a drop-in replacement like this:
try: import bpdb as pdb except ImportError: import pdb