##// END OF EJS Templates
- Fix tab-completion so that quotes are not closed unless the completion is...
- Fix tab-completion so that quotes are not closed unless the completion is unambiguous. - Small cleanups in ipy_stock_completers.

File last commit:

r408:f8850b89
r412:d0556ec5
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)