bdb — Debugger framework

Source code:Lib/bdb.py


Thebdb module handles basic debugger functions, like setting breakpointsor managing execution via the debugger.

The following exception is defined:

exceptionbdb.BdbQuit

Exception raised by theBdb class for quitting the debugger.

Thebdb module also defines two classes:

classbdb.Breakpoint(self,file,line,temporary=0,cond=None,funcname=None)

This class implements temporary breakpoints, ignore counts, disabling and(re-)enabling, and conditionals.

Breakpoints are indexed by number through a list calledbpbynumberand by(file,line) pairs throughbplist. The former points to asingle instance of classBreakpoint. The latter points to a list ofsuch instances since there may be more than one breakpoint per line.

When creating a breakpoint, its associated filename should be in canonicalform. If afuncname is defined, a breakpoint hit will be counted when thefirst line of that function is executed. A conditional breakpoint alwayscounts a hit.

Breakpoint instances have the following methods:

deleteMe()

Delete the breakpoint from the list associated to a file/line. If it isthe last breakpoint in that position, it also deletes the entry for thefile/line.

enable()

Mark the breakpoint as enabled.

disable()

Mark the breakpoint as disabled.

bpformat()

Return a string with all the information about the breakpoint, nicelyformatted:

  • The breakpoint number.

  • If it is temporary or not.

  • Its file,line position.

  • The condition that causes a break.

  • If it must be ignored the next N times.

  • The breakpoint hit count.

New in version 3.2.

bpprint(out=None)

Print the output ofbpformat() to the fileout, or if it isNone, to standard output.

classbdb.Bdb(skip=None)

TheBdb class acts as a generic Python debugger base class.

This class takes care of the details of the trace facility; a derived classshould implement user interaction. The standard debugger class(pdb.Pdb) is an example.

Theskip argument, if given, must be an iterable of glob-stylemodule name patterns. The debugger will not step into frames thatoriginate in a module that matches one of these patterns. Whether aframe is considered to originate in a certain module is determinedby the__name__ in the frame globals.

New in version 3.1:Theskip argument.

The following methods ofBdb normally don’t need to be overridden.

canonic(filename)

Auxiliary method for getting a filename in a canonical form, that is, as acase-normalized (on case-insensitive filesystems) absolute path, strippedof surrounding angle brackets.

reset()

Set thebotframe,stopframe,returnframe andquitting attributes with values ready to start debugging.

trace_dispatch(frame,event,arg)

This function is installed as the trace function of debugged frames. Itsreturn value is the new trace function (in most cases, that is, itself).

The default implementation decides how to dispatch a frame, depending onthe type of event (passed as a string) that is about to be executed.event can be one of the following:

  • "line": A new line of code is going to be executed.

  • "call": A function is about to be called, or another code blockentered.

  • "return": A function or other code block is about to return.

  • "exception": An exception has occurred.

  • "c_call": A C function is about to be called.

  • "c_return": A C function has returned.

  • "c_exception": A C function has raised an exception.

For the Python events, specialized functions (see below) are called. Forthe C events, no action is taken.

Thearg parameter depends on the previous event.

See the documentation forsys.settrace() for more information on thetrace function. For more information on code and frame objects, refer toThe standard type hierarchy.

dispatch_line(frame)

If the debugger should stop on the current line, invoke theuser_line() method (which should be overridden in subclasses).Raise aBdbQuit exception if theBdb.quitting flag is set(which can be set fromuser_line()). Return a reference to thetrace_dispatch() method for further tracing in that scope.

dispatch_call(frame,arg)

If the debugger should stop on this function call, invoke theuser_call() method (which should be overridden in subclasses).Raise aBdbQuit exception if theBdb.quitting flag is set(which can be set fromuser_call()). Return a reference to thetrace_dispatch() method for further tracing in that scope.

dispatch_return(frame,arg)

If the debugger should stop on this function return, invoke theuser_return() method (which should be overridden in subclasses).Raise aBdbQuit exception if theBdb.quitting flag is set(which can be set fromuser_return()). Return a reference to thetrace_dispatch() method for further tracing in that scope.

dispatch_exception(frame,arg)

If the debugger should stop at this exception, invokes theuser_exception() method (which should be overridden in subclasses).Raise aBdbQuit exception if theBdb.quitting flag is set(which can be set fromuser_exception()). Return a reference to thetrace_dispatch() method for further tracing in that scope.

Normally derived classes don’t override the following methods, but they mayif they want to redefine the definition of stopping and breakpoints.

stop_here(frame)

This method checks if theframe is somewhere belowbotframe inthe call stack.botframe is the frame in which debugging started.

break_here(frame)

This method checks if there is a breakpoint in the filename and linebelonging toframe or, at least, in the current function. If thebreakpoint is a temporary one, this method deletes it.

break_anywhere(frame)

This method checks if there is a breakpoint in the filename of the currentframe.

Derived classes should override these methods to gain control over debuggeroperation.

user_call(frame,argument_list)

This method is called fromdispatch_call() when there is thepossibility that a break might be necessary anywhere inside the calledfunction.

user_line(frame)

This method is called fromdispatch_line() when eitherstop_here() orbreak_here() yieldsTrue.

user_return(frame,return_value)

This method is called fromdispatch_return() whenstop_here()yieldsTrue.

user_exception(frame,exc_info)

This method is called fromdispatch_exception() whenstop_here() yieldsTrue.

do_clear(arg)

Handle how a breakpoint must be removed when it is a temporary one.

This method must be implemented by derived classes.

Derived classes and clients can call the following methods to affect thestepping state.

set_step()

Stop after one line of code.

set_next(frame)

Stop on the next line in or below the given frame.

set_return(frame)

Stop when returning from the given frame.

set_until(frame)

Stop when the line with the line no greater than the current one isreached or when returning from current frame.

set_trace([frame])

Start debugging fromframe. Ifframe is not specified, debuggingstarts from caller’s frame.

set_continue()

Stop only at breakpoints or when finished. If there are no breakpoints,set the system trace function toNone.

set_quit()

Set thequitting attribute toTrue. This raisesBdbQuit inthe next call to one of thedispatch_*() methods.

Derived classes and clients can call the following methods to manipulatebreakpoints. These methods return a string containing an error message ifsomething went wrong, orNone if all is well.

set_break(filename,lineno,temporary=0,cond,funcname)

Set a new breakpoint. If thelineno line doesn’t exist for thefilename passed as argument, return an error message. Thefilenameshould be in canonical form, as described in thecanonic() method.

clear_break(filename,lineno)

Delete the breakpoints infilename andlineno. If none were set, anerror message is returned.

clear_bpbynumber(arg)

Delete the breakpoint which has the indexarg in theBreakpoint.bpbynumber. Ifarg is not numeric or out of range,return an error message.

clear_all_file_breaks(filename)

Delete all breakpoints infilename. If none were set, an error messageis returned.

clear_all_breaks()

Delete all existing breakpoints.

get_bpbynumber(arg)

Return a breakpoint specified by the given number. Ifarg is a string,it will be converted to a number. Ifarg is a non-numeric string, ifthe given breakpoint never existed or has been deleted, aValueError is raised.

New in version 3.2.

get_break(filename,lineno)

Check if there is a breakpoint forlineno offilename.

get_breaks(filename,lineno)

Return all breakpoints forlineno infilename, or an empty list ifnone are set.

get_file_breaks(filename)

Return all breakpoints infilename, or an empty list if none are set.

get_all_breaks()

Return all breakpoints that are set.

Derived classes and clients can call the following methods to get a datastructure representing a stack trace.

get_stack(f,t)

Get a list of records for a frame and all higher (calling) and lowerframes, and the size of the higher part.

format_stack_entry(frame_lineno,lprefix=': ')

Return a string with information about a stack entry, identified by a(frame,lineno) tuple:

  • The canonical form of the filename which contains the frame.

  • The function name, or"<lambda>".

  • The input arguments.

  • The return value.

  • The line of code (if it exists).

The following two methods can be called by clients to use a debugger to debugastatement, given as a string.

run(cmd,globals=None,locals=None)

Debug a statement executed via theexec() function.globalsdefaults to__main__.__dict__,locals defaults toglobals.

runeval(expr,globals=None,locals=None)

Debug an expression executed via theeval() function.globals andlocals have the same meaning as inrun().

runctx(cmd,globals,locals)

For backwards compatibility. Calls therun() method.

runcall(func,*args,**kwds)

Debug a single function call, and return its result.

Finally, the module defines the following functions:

bdb.checkfuncname(b,frame)

Check whether we should break here, depending on the way the breakpointbwas set.

If it was set via line number, it checks ifb.line is the same as the onein the frame also passed as argument. If the breakpoint was set via functionname, we have to check we are in the right frame (the right function) and ifwe are in its first executable line.

bdb.effective(file,line,frame)

Determine if there is an effective (active) breakpoint at this line of code.Return a tuple of the breakpoint and a boolean that indicates if it is okto delete a temporary breakpoint. Return(None,None) if there is nomatching breakpoint.

bdb.set_trace()

Start debugging with aBdb instance from caller’s frame.