##// END OF EJS Templates
Forgot mention of irunner improvements to automatically recognize extensions...
Forgot mention of irunner improvements to automatically recognize extensions and select the right runner.

File last commit:

r408:f8850b89
r419:4b82079b
Show More
ipy_pydb.py
14 lines | 311 B | text/x-python | PythonLexer
import pydb
import IPython.ipapi
from IPython.genutils import arg_split
ip = IPython.ipapi.get()
def call_pydb(self, args):
argl = arg_split(args)
# print argl # dbg
ip.IP.history_saving_wrapper( lambda : pydb.runl(*argl) )()
ip.expose_magic("pydb",call_pydb)