##// END OF EJS Templates
IPython/Extensions/astyle.py: Do a relative import of ipipe, so that...
IPython/Extensions/astyle.py: Do a relative import of ipipe, so that we don't get a duplicate ipipe module, where registration of the xrepr implementation for Text is useless. IPython/Extensions/ipipe.py: Fix __xrepr__() implementation for ils. IPython/Extensions/ibrowse.py: Fix keymapping for the enter command.

File last commit:

r439:2b7a1815
r443:5d57fb7b
Show More
ipy_pydb.py
31 lines | 814 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()
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)