##// END OF EJS Templates
- Make the execution of 'from pylab import *' when -pylab is given be...
- Make the execution of 'from pylab import *' when -pylab is given be optional. A new flag, pylab_import_all controls this behavior, the default is True for backwards compatibility. - Small fixes to previously committed coloring support in tracebacks.

File last commit:

r552:41204998
r554:b5bda5b0
Show More
ipy_pydb.py
31 lines | 810 B | text/x-python | PythonLexer
import inspect
import IPython.ipapi
from IPython.genutils import arg_split
ip = IPython.ipapi.get()
from IPython import Debugger
def call_pydb(self, args):
"""Invoke pydb with the supplied parameters."""
try:
import pydb
except ImportError:
raise ImportError("pydb doesn't seem to be installed.")
if not hasattr(pydb.pydb, "runv"):
raise ImportError("You need pydb version 1.19 or later installed.")
argl = arg_split(args)
# print argl # dbg
if len(inspect.getargspec(pydb.runv)[0]) == 2:
pdb = Debugger.Pdb(color_scheme=self.rc.colors)
ip.IP.history_saving_wrapper( lambda : pydb.runv(argl, pdb) )()
else:
ip.IP.history_saving_wrapper( lambda : pydb.runv(argl) )()
ip.expose_magic("pydb",call_pydb)