##// END OF EJS Templates
IPython/Extensions/ipipe.py (xiter): Make sure that iterating...
IPython/Extensions/ipipe.py (xiter): Make sure that iterating a string containing a single line yields the string itself as the only item. IPython/Extensions/ibrowse.py (ibrowse): Avoid entering an object if it's the same as the one on the last level (This avoids infinite recursion for one line strings).

File last commit:

r503:b114b8cd
r513:9fe15cec
Show More
ipy_pydb.py
31 lines | 783 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)