##// END OF EJS Templates
Merge pull request #3630 from minrk/css...
Merge pull request #3630 from minrk/css CSS adjustments - remove boilerplate.css, as it is redundant with bootstrap's own reset.less - add ipython.less / ipython.min.css for IPython-only CSS - move font-awesome to outermost style.less, so it is not included in ipython.min.css, where it is not desirable. This doesn't do any of the naming / scoping cleanup that we should ultimately do, but it does create the file where that will have its desired effect.

File last commit:

r2498:3eae1372
r11438:f6a47d3d merge
Show More
ipy_pydb.py
31 lines | 813 B | text/x-python | PythonLexer
import inspect
from IPython.core import ipapi
from IPython.utils.process import arg_split
ip = ipapi.get()
from IPython.core 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.colors)
ip.history_saving_wrapper( lambda : pydb.runv(argl, pdb) )()
else:
ip.history_saving_wrapper( lambda : pydb.runv(argl) )()
ip.define_magic("pydb",call_pydb)