Skip to content

Instantly share code, notes, and snippets.

@c0ldlimit
Created April 6, 2013 05:48
Show Gist options
  • Save c0ldlimit/5325027 to your computer and use it in GitHub Desktop.
Save c0ldlimit/5325027 to your computer and use it in GitHub Desktop.
#python #ipython Put into startup folder in profile_default for better debugging
import sys
def set_trace():
from IPython.core.debugger import Pdb
Pdb(color_scheme='Linux').set_trace(sys._getframe().f_back)
def debug(f, *args, **kwargs):
from IPython.core.debugger import Pdb
pdb = Pdb(color_scheme='Linux')
return pdb.runcall(f, *args, **kwargs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment