Debugger

Module: Debugger

Inheritance diagram for IPython.Debugger:

Pdb debugger class.

Modified from the standard pdb.Pdb class to avoid including readline, so that the command line completion of other programs which include this isn’t damaged.

In the future, this class will be expanded with improvements over the standard pdb.

The code in this file is mainly lifted out of cmd.py in Python 2.2, with minor changes. Licensing should therefore be under the standard Python terms. For details on the PSF (Python Software Foundation) standard license, see:

http://www.python.org/2.2.3/license.html

Classes

Pdb

class IPython.Debugger.Pdb(color_scheme='NoColor', completekey=None, stdin=None, stdout=None)

Bases: pdb.Pdb

Modified Pdb class, does not load readline.

__init__(color_scheme='NoColor', completekey=None, stdin=None, stdout=None)
do_d(*args, **kw)
do_down(*args, **kw)
do_l(arg)
do_list(arg)
do_pdef(arg)
The debugger interface to magic_pdef
do_pdoc(arg)
The debugger interface to magic_pdoc
do_pinfo(arg)
The debugger equivalant of ?obj
do_q(*args, **kw)
do_quit(*args, **kw)
do_u(*args, **kw)
do_up(*args, **kw)
format_stack_entry(frame_lineno, lprefix=': ', context=3)
interaction(frame, traceback)
list_command_pydb(arg)
List command to use if we have a newer pydb installed
new_do_down(arg)
new_do_frame(arg)
new_do_quit(arg)
new_do_restart(arg)
Restart command. In the context of ipython this is exactly the same thing as ‘quit’.
new_do_up(arg)
postloop()
print_list_lines(filename, first, last)
The printing (as opposed to the parsing part of a ‘list’ command.
print_stack_entry(frame_lineno, prompt_prefix='n-> ', context=3)
print_stack_trace()
set_colors(scheme)
Shorthand access to the color table scheme selector method.

Tracer

class IPython.Debugger.Tracer(colors=None)

Bases: object

Class for local debugging, similar to pdb.set_trace.

Instances of this class, when called, behave like pdb.set_trace, but providing IPython’s enhanced capabilities.

This is implemented as a class which must be initialized in your own code and not as a standalone function because we need to detect at runtime whether IPython is already active or not. That detection is done in the constructor, ensuring that this code plays nicely with a running IPython, while functioning acceptably (though with limitations) if outside of it.

__init__(colors=None)

Create a local debugger instance.

Parameters:
  • colors (None): a string containing the name of the color scheme to

use, it must be one of IPython’s valid color schemes. If not given, the function will default to the current IPython scheme when running inside IPython, and to ‘NoColor’ otherwise.

Usage example:

from IPython.Debugger import Tracer; debug_here = Tracer()

... later in your code debug_here() # -> will open up the debugger at that point.

Once the debugger activates, you can use all of its regular commands to step through code, set breakpoints, etc. See the pdb documentation from the Python standard library for usage details.

Functions

IPython.Debugger.BdbQuit_IPython_excepthook(self, et, ev, tb)
IPython.Debugger.BdbQuit_excepthook(et, ev, tb)
IPython.Debugger.decorate_fn_with_doc(new_fn, old_fn, additional_text='')
Make new_fn have old_fn’s doc string. This is particularly useful for the do_... commands that hook into the help system. Adapted from from a comp.lang.python posting by Duncan Booth.

Table Of Contents

Previous topic

DPyGetOpt

Next topic

Itpl

This Page

Quick search