Implemented over.core.misc.debugger

This commit is contained in:
Overwatch 2015-01-31 12:04:41 +01:00
parent 402a05f86d
commit 1f112c32c5

View file

@ -71,3 +71,14 @@ def console(locals, globals=None, tab_completion=False):
c = code.InteractiveConsole(environment)
c.interact(banner='')
# --------------------------------------------------
def debugger():
'''
Drops into the Python Debugger where called.
'''
import pdb
pdb.set_trace()