bdb
--- 偵錯器框架¶
原始碼:Lib/bdb.py
Thebdb
module handles basic debugger functions, like setting breakpointsor managing execution via the debugger.
有定義以下例外:
bdb
模組也定義了兩個類別:
- classbdb.Breakpoint(self,file,line,temporary=False,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 called
bpbynumber
and by(file,line)
pairs throughbplist
. The former points toa single instance of classBreakpoint
. The latter points to a listof such instances since there may be more than one breakpoint per line.When creating a breakpoint, its associated
filename
shouldbe in canonical form. If afuncname
is defined, a breakpointhit
will be counted when the first line of that function isexecuted. Aconditional
breakpoint always counts ahit
.Breakpoint
實例有以下方法:- 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:
Breakpoint number.
Temporary status (del or keep).
File/line position.
Break condition.
Number of times to ignore.
Number of times hit.
在 3.2 版被加入.
- bpprint(out=None)¶
Print the output of
bpformat()
to the fileout, or if it isNone
, to standard output.
Breakpoint
instances have the following attributes:- file¶
File name of the
Breakpoint
.
- line¶
Line number of the
Breakpoint
withinfile
.
- temporary¶
True
if aBreakpoint
at (file, line) is temporary.
- cond¶
Condition for evaluating a
Breakpoint
at (file, line).
- funcname¶
Function name that defines whether a
Breakpoint
is hit uponentering the function.
- enabled¶
如
Breakpoint
有被啟用則為True
。
- bpbynumber¶
Numeric index for a single instance of a
Breakpoint
.
- bplist¶
Dictionary of
Breakpoint
instances indexed by(file
,line
) tuples.
- ignore¶
Number of times to ignore a
Breakpoint
.
- hits¶
Count of the number of times a
Breakpoint
has been hit.
- classbdb.Bdb(skip=None)¶
The
Bdb
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.在 3.1 版的變更:新增skip 引數。
The following methods of
Bdb
normally don't need to be overridden.- canonic(filename)¶
Return canonical form offilename.
For real file names, the canonical form is an operating-system-dependent,
case-normalized
absolutepath
. Afilename with angle brackets, such as"<stdin>"
generated in interactive mode, is returned unchanged.
- reset()¶
Set the
botframe
,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 for
sys.settrace()
for more information on thetrace function. For more information on code and frame objects, refer to標準型別階層.
- dispatch_line(frame)¶
If the debugger should stop on the current line, invoke the
user_line()
method (which should be overridden in subclasses).Raise aBdbQuit
exception if thequitting
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 the
user_call()
method (which should be overridden in subclasses).Raise aBdbQuit
exception if thequitting
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 the
user_return()
method (which should be overridden in subclasses).Raise aBdbQuit
exception if thequitting
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 the
user_exception()
method (which should be overridden in subclasses).Raise aBdbQuit
exception if thequitting
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.
- is_skipped_line(module_name)¶
Return
True
ifmodule_name matches any skip pattern.
- stop_here(frame)¶
Return
True
ifframe is below the starting frame in the stack.
- break_here(frame)¶
Return
True
if there is an effective breakpoint for this line.Check whether a line or function breakpoint exists and is in effect. Delete temporarybreakpoints based on information from
effective()
.
- break_anywhere(frame)¶
Return
True
if any breakpoint exists forframe's filename.
Derived classes should override these methods to gain control over debuggeroperation.
- user_call(frame,argument_list)¶
Called from
dispatch_call()
if a break might stop inside thecalled function.argument_list is not used anymore and will always be
None
.The argument is kept for backwards compatibility.
- user_line(frame)¶
Called from
dispatch_line()
when eitherstop_here()
orbreak_here()
returnsTrue
.
- user_return(frame,return_value)¶
Called from
dispatch_return()
whenstop_here()
returnsTrue
.
- user_exception(frame,exc_info)¶
Called from
dispatch_exception()
whenstop_here()
returnsTrue
.
- 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,lineno=None)¶
Stop when the line with thelineno 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.
在 3.13 版的變更:
set_trace()
will enter the debugger immediately, rather thanon the next line of code to be executed.
- set_continue()¶
Stop only at breakpoints or when finished. If there are no breakpoints,set the system trace function to
None
.
- set_quit()¶
Set the
quitting
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, or
None
if all is well.- set_break(filename,lineno,temporary=False,cond=None,funcname=None)¶
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 the
canonic()
method.
- clear_break(filename,lineno)¶
Delete the breakpoints infilename andlineno. If none were set,return an error message.
- clear_bpbynumber(arg)¶
Delete the breakpoint which has the indexarg in the
Breakpoint.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, return an errormessage.
- clear_all_breaks()¶
Delete all existing breakpoints. If none were set, return an errormessage.
- 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, a
ValueError
is raised.在 3.2 版被加入.
- get_break(filename,lineno)¶
Return
True
if there is a breakpoint forlineno infilename.
- 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)¶
Return a list of (frame, lineno) tuples in a stack trace, and a size.
The most recently called frame is last in the list. The size is the numberof frames below the frame where the debugger was invoked.
- format_stack_entry(frame_lineno,lprefix=':')¶
Return a string with information about a stack entry, which is a
(frame,lineno)
tuple. The return string contains:The canonical filename which contains the frame.
函式名稱或
"<lambda>"
。輸入引數。
回傳值。
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 the
exec()
function.globalsdefaults to__main__.__dict__
,locals defaults toglobals.
Finally, the module defines the following functions:
- bdb.checkfuncname(b,frame)¶
Return
True
if we should break here, depending on the way theBreakpoint
b was set.If it was set via line number, it checks if
b.line
is the same as the one inframe.If the breakpoint was set viafunctionname
, we have to check we are inthe rightframe (the right function) and if we are on its first executableline.
- bdb.effective(file,line,frame)¶
Return
(activebreakpoint,deletetemporaryflag)
or(None,None)
as thebreakpoint to act upon.Theactive breakpoint is the first entry in
bplist
for the(file
,line
)(which must exist) that isenabled
, forwhichcheckfuncname()
is true, and that has neither a falsecondition
nor positiveignore
count. Theflag, meaning that atemporary breakpoint should be deleted, isFalse
only when thecond
cannot be evaluated (in which case,ignore
count is ignored).If no such entry exists, then
(None,None)
is returned.