def Debug(self): """Enter The Debugger (starring Bruce Li). Forceably enter the dubugger. Win the prize, escape with your life. Useful when developing tests. """ debugger.set_trace(start=2)
def debug_here(self): """Enter The Debugger. """ debugger.set_trace(start=2)
def debug(self): """Enter the debugger... at will.""" debugger.set_trace(2)