pdb — The Python Debugger¶
Source code:Lib/pdb.py
The modulepdb defines an interactive source code debugger for Pythonprograms. It supports setting (conditional) breakpoints and single stepping atthe source line level, inspection of stack frames, source code listing, andevaluation of arbitrary Python code in the context of any stack frame. It alsosupports post-mortem debugging and can be called under program control.
The debugger is extensible – it is actually defined as the classPdb.This is currently undocumented but easily understood by reading the source. Theextension interface uses the modulesbdb andcmd.
See also
- Module
faulthandler Used to dump Python tracebacks explicitly, on a fault, after a timeout,or on a user signal.
- Module
traceback Standard interface to extract, format and print stack traces of Python programs.
The typical usage to break into the debugger is to insert:
importpdb;pdb.set_trace()
Or:
breakpoint()
at the location you want to break into the debugger, and then run the program.You can then step through the code following this statement, and continuerunning without the debugger using thecontinue command.
Changed in version 3.7:The built-inbreakpoint(), when called with defaults, can be usedinstead ofimportpdb;pdb.set_trace().
defdouble(x):breakpoint()returnx*2val=3print(f"{val} * 2 is{double(val)}")
The debugger’s prompt is(Pdb), which is the indicator that you are in debug mode:
>...(3)double()->returnx*2(Pdb)px3(Pdb)continue3*2is6
Changed in version 3.3:Tab-completion via thereadline module is available for commands andcommand arguments, e.g. the current global and local names are offered asarguments of thep command.
You can also invokepdb from the command line to debug other scripts. Forexample:
python-mpdbmyscript.py
When invoked as a module, pdb will automatically enter post-mortem debugging ifthe program being debugged exits abnormally. After post-mortem debugging (orafter normal exit of the program), pdb will restart the program. Automaticrestarting preserves pdb’s state (such as breakpoints) and in most cases is moreuseful than quitting the debugger upon program’s exit.
Changed in version 3.2:Added the-c option to execute commands as if givenin a.pdbrc file; seeDebugger Commands.
Changed in version 3.7:Added the-m option to execute modules similar to the waypython-m does. As with a script, the debugger will pause execution justbefore the first line of the module.
Typical usage to execute a statement under control of the debugger is:
>>>importpdb>>>deff(x):...print(1/x)>>>pdb.run("f(2)")> <string>(1)<module>()(Pdb) continue0.5>>>
The typical usage to inspect a crashed program is:
>>>importpdb>>>deff(x):...print(1/x)...>>>f(0)Traceback (most recent call last): File"<stdin>", line1, in<module> File"<stdin>", line2, infZeroDivisionError:division by zero>>>pdb.pm()> <stdin>(2)f()(Pdb) p x0(Pdb)
The module defines the following functions; each enters the debugger in aslightly different way:
- pdb.run(statement,globals=None,locals=None)¶
Execute thestatement (given as a string or a code object) under debuggercontrol. The debugger prompt appears before any code is executed; you canset breakpoints and type
continue, or you can step through thestatement usingstepornext(all these commands areexplained below). The optionalglobals andlocals arguments specify theenvironment in which the code is executed; by default the dictionary of themodule__main__is used. (See the explanation of the built-inexec()oreval()functions.)
- pdb.runeval(expression,globals=None,locals=None)¶
Evaluate theexpression (given as a string or a code object) under debuggercontrol. When
runeval()returns, it returns the value of theexpression. Otherwise this function is similar torun().
- pdb.runcall(function,*args,**kwds)¶
Call thefunction (a function or method object, not a string) with thegiven arguments. When
runcall()returns, it returns whatever thefunction call returned. The debugger prompt appears as soon as the functionis entered.
- pdb.set_trace(*,header=None)¶
Enter the debugger at the calling stack frame. This is useful to hard-codea breakpoint at a given point in a program, even if the code is nototherwise being debugged (e.g. when an assertion fails). If given,header is printed to the console just before debugging begins.
Changed in version 3.7:The keyword-only argumentheader.
- pdb.post_mortem(traceback=None)¶
Enter post-mortem debugging of the giventraceback object. If notraceback is given, it uses the one of the exception that is currentlybeing handled (an exception must be being handled if the default is to beused).
- pdb.pm()¶
Enter post-mortem debugging of the traceback found in
sys.last_traceback.
Therun* functions andset_trace() are aliases for instantiating thePdb class and calling the method of the same name. If you want toaccess further features, you have to do this yourself:
- classpdb.Pdb(completekey='tab',stdin=None,stdout=None,skip=None,nosigint=False,readrc=True)¶
Pdbis the debugger class.Thecompletekey,stdin andstdout arguments are passed to theunderlying
cmd.Cmdclass; see the description there.Theskip argument, if given, must be an iterable of glob-style module namepatterns. The debugger will not step into frames that originate in a modulethat matches one of these patterns.[1]
By default, Pdb sets a handler for the SIGINT signal (which is sent when theuser pressesCtrl-C on the console) when you give a
continuecommand.This allows you to break into the debugger again by pressingCtrl-C. If youwant Pdb not to touch the SIGINT handler, setnosigint to true.Thereadrc argument defaults to true and controls whether Pdb will load.pdbrc files from the filesystem.
Example call to enable tracing withskip:
importpdb;pdb.Pdb(skip=['django.*']).set_trace()
Raises anauditing event
pdb.Pdbwith no arguments.Changed in version 3.1:Added theskip parameter.
Changed in version 3.2:Added thenosigint parameter.Previously, a SIGINT handler was never set by Pdb.
Changed in version 3.6:Thereadrc argument.
Debugger Commands¶
The commands recognized by the debugger are listed below. Most commands can beabbreviated to one or two letters as indicated; e.g.h(elp) means thateitherh orhelp can be used to enter the help command (but notheorhel, norH orHelp orHELP). Arguments to commands must beseparated by whitespace (spaces or tabs). Optional arguments are enclosed insquare brackets ([]) in the command syntax; the square brackets must not betyped. Alternatives in the command syntax are separated by a vertical bar(|).
Entering a blank line repeats the last command entered. Exception: if the lastcommand was alist command, the next 11 lines are listed.
Commands that the debugger doesn’t recognize are assumed to be Python statementsand are executed in the context of the program being debugged. Pythonstatements can also be prefixed with an exclamation point (!). This is apowerful way to inspect the program being debugged; it is even possible tochange a variable or call a function. When an exception occurs in such astatement, the exception name is printed but the debugger’s state is notchanged.
The debugger supportsaliases. Aliases can haveparameters which allows one a certain level of adaptability to the context underexamination.
Multiple commands may be entered on a single line, separated by;;. (Asingle; is not used as it is the separator for multiple commands in a linethat is passed to the Python parser.) No intelligence is applied to separatingthe commands; the input is split at the first;; pair, even if it is in themiddle of a quoted string. A workaround for strings with double semicolonsis to use implicit string concatenation';'';' or";"";".
If a file.pdbrc exists in the user’s home directory or in the currentdirectory, it is read with'utf-8' encoding and executed as if it had beentyped at the debugger prompt, with the exception that empty lines and linesstarting with# are ignored. This is particularly useful for aliases. If bothfiles exist, the one in the home directory is read first and aliases defined therecan be overridden by the local file.
Changed in version 3.2:.pdbrc can now contain commands that continue debugging, such ascontinue ornext. Previously, these commands had noeffect.
Changed in version 3.11:.pdbrc is now read with'utf-8' encoding. Previously, it was readwith the system locale encoding.
- h(elp)[command]¶
Without argument, print the list of available commands. With acommand asargument, print help about that command.
helppdbdisplays the fulldocumentation (the docstring of thepdbmodule). Since thecommandargument must be an identifier,helpexecmust be entered to get help onthe!command.
- w(here)¶
Print a stack trace, with the most recent frame at the bottom. An arrow (
>)indicates the current frame, which determines the context of most commands.
- d(own)[count]¶
Move the current framecount (default one) levels down in the stack trace(to a newer frame).
- u(p)[count]¶
Move the current framecount (default one) levels up in the stack trace (toan older frame).
- b(reak)[([filename:]lineno|function)[,condition]]¶
With alineno argument, set a break there in the current file. With afunction argument, set a break at the first executable statement withinthat function. The line number may be prefixed with a filename and a colon,to specify a breakpoint in another file (probably one that hasn’t been loadedyet). The file is searched on
sys.path. Note that each breakpointis assigned a number to which all the other breakpoint commands refer.If a second argument is present, it is an expression which must evaluate totrue before the breakpoint is honored.
Without argument, list all breaks, including for each breakpoint, the numberof times that breakpoint has been hit, the current ignore count, and theassociated condition if any.
- tbreak[([filename:]lineno|function)[,condition]]¶
Temporary breakpoint, which is removed automatically when it is first hit.The arguments are the same as for
break.
- cl(ear)[filename:lineno|bpnumber...]¶
With afilename:lineno argument, clear all the breakpoints at this line.With a space separated list of breakpoint numbers, clear those breakpoints.Without argument, clear all breaks (but first ask confirmation).
- disable[bpnumber...]¶
Disable the breakpoints given as a space separated list of breakpointnumbers. Disabling a breakpoint means it cannot cause the program to stopexecution, but unlike clearing a breakpoint, it remains in the list ofbreakpoints and can be (re-)enabled.
- enable[bpnumber...]¶
Enable the breakpoints specified.
- ignorebpnumber[count]¶
Set the ignore count for the given breakpoint number. Ifcount is omitted,the ignore count is set to 0. A breakpoint becomes active when the ignorecount is zero. When non-zero, thecount is decremented each time thebreakpoint is reached and the breakpoint is not disabled and any associatedcondition evaluates to true.
- conditionbpnumber[condition]¶
Set a newcondition for the breakpoint, an expression which must evaluateto true before the breakpoint is honored. Ifcondition is absent, anyexisting condition is removed; i.e., the breakpoint is made unconditional.
- commands[bpnumber]¶
Specify a list of commands for breakpoint numberbpnumber. The commandsthemselves appear on the following lines. Type a line containing just
endto terminate the commands. An example:(Pdb)commands1(com)psome_variable(com)end(Pdb)
To remove all commands from a breakpoint, type
commandsand follow itimmediately withend; that is, give no commands.With nobpnumber argument,
commandsrefers to the last breakpoint set.You can use breakpoint commands to start your program up again. Simply usethe
continuecommand, orstep,or any other command that resumes execution.Specifying any command resuming execution(currently
continue,step,next,return,jump,quitand their abbreviations)terminates the command list (as ifthat command was immediately followed by end). This is because any time youresume execution (even with a simple next or step), you may encounter anotherbreakpoint—which could have its own command list, leading to ambiguities aboutwhich list to execute.If you use the
silentcommand in the command list, the usual message aboutstopping at a breakpoint is not printed. This may be desirable for breakpointsthat are to print a specific message and then continue. If none of the othercommands print anything, you see no sign that the breakpoint was reached.
- s(tep)¶
Execute the current line, stop at the first possible occasion (either in afunction that is called or on the next line in the current function).
- n(ext)¶
Continue execution until the next line in the current function is reached orit returns. (The difference between
nextandstepisthatstepstops inside a called function, whilenextexecutes called functions at (nearly) full speed, only stopping at the nextline in the current function.)
- unt(il)[lineno]¶
Without argument, continue execution until the line with a number greaterthan the current one is reached.
Withlineno, continue execution until a line with a number greater orequal tolineno is reached. In both cases, also stop when the current framereturns.
Changed in version 3.2:Allow giving an explicit line number.
- r(eturn)¶
Continue execution until the current function returns.
- c(ont(inue))¶
Continue execution, only stop when a breakpoint is encountered.
- j(ump)lineno¶
Set the next line that will be executed. Only available in the bottom-mostframe. This lets you jump back and execute code again, or jump forward toskip code that you don’t want to run.
It should be noted that not all jumps are allowed – for instance it is notpossible to jump into the middle of a
forloop or out of afinallyclause.
- l(ist)[first[,last]]¶
List source code for the current file. Without arguments, list 11 linesaround the current line or continue the previous listing. With
.asargument, list 11 lines around the current line. With one argument,list 11 lines around at that line. With two arguments, list the given range;if the second argument is less than the first, it is interpreted as a count.The current line in the current frame is indicated by
->. If anexception is being debugged, the line where the exception was originallyraised or propagated is indicated by>>, if it differs from the currentline.Changed in version 3.2:Added the
>>marker.
- ll|longlist¶
List all source code for the current function or frame. Interesting linesare marked as for
list.New in version 3.2.
- a(rgs)¶
Print the arguments of the current function and their current values.
- pexpression¶
Evaluateexpression in the current context and print its value.
Note
print()can also be used, but is not a debugger command — this executes thePythonprint()function.
- ppexpression¶
Like the
pcommand, except the value ofexpression ispretty-printed using thepprintmodule.
- whatisexpression¶
Print the type ofexpression.
- sourceexpression¶
Try to get source code ofexpression and display it.
New in version 3.2.
- display[expression]¶
Display the value ofexpression if it changed, each time execution stopsin the current frame.
Withoutexpression, list all display expressions for the current frame.
Note
Display evaluatesexpression and compares to the result of the previousevaluation ofexpression, so when the result is mutable, display may notbe able to pick up the changes.
Example:
lst=[]breakpoint()passlst.append(1)print(lst)
Display won’t realize
lsthas been changed because the result of evaluationis modified in place bylst.append(1)before being compared:>example.py(3)<module>()->pass(Pdb)displaylstdisplaylst:[](Pdb)n>example.py(4)<module>()->lst.append(1)(Pdb)n>example.py(5)<module>()->print(lst)(Pdb)
You can do some tricks with copy mechanism to make it work:
>example.py(3)<module>()->pass(Pdb)displaylst[:]displaylst[:]:[](Pdb)n>example.py(4)<module>()->lst.append(1)(Pdb)n>example.py(5)<module>()->print(lst)displaylst[:]:[1][old:[]](Pdb)
New in version 3.2.
- undisplay[expression]¶
Do not displayexpression anymore in the current frame. Withoutexpression, clear all display expressions for the current frame.
New in version 3.2.
- interact¶
Start an interactive interpreter (using the
codemodule) whose globalnamespace contains all the (global and local) names found in the currentscope.New in version 3.2.
- alias[name[command]]¶
Create an alias calledname that executescommand. Thecommand mustnot be enclosed in quotes. Replaceable parameters can be indicated by
%1,%2, and so on, while%*is replaced by all the parameters.Ifcommand is omitted, the current alias forname is shown. If noarguments are given, all aliases are listed.Aliases may be nested and can contain anything that can be legally typed atthe pdb prompt. Note that internal pdb commandscan be overridden byaliases. Such a command is then hidden until the alias is removed. Aliasingis recursively applied to the first word of the command line; all other wordsin the line are left alone.
As an example, here are two useful aliases (especially when placed in the
.pdbrcfile):# Print instance variables (usage "pi classInst")aliaspiforkin%1.__dict__.keys():print(f"%1.{k} ={%1.__dict__[k]}")# Print instance variables in selfaliaspspiself
- unaliasname¶
Delete the specified aliasname.
- !statement¶
Execute the (one-line)statement in the context of the current stack frame.The exclamation point can be omitted unless the first word of the statementresembles a debugger command. To set a global variable, you can prefix theassignment command with a
globalstatement on the same line,e.g.:(Pdb)globallist_options;list_options=['-l'](Pdb)
- run[args...]¶
- restart[args...]¶
Restart the debugged Python program. Ifargs is supplied, it is splitwith
shlexand the result is used as the newsys.argv.History, breakpoints, actions and debugger options are preserved.restartis an alias forrun.
- q(uit)¶
Quit from the debugger. The program being executed is aborted.
- debugcode¶
Enter a recursive debugger that steps throughcode(which is an arbitrary expression or statement to beexecuted in the current environment).
- retval¶
Print the return value for the last return of the current function.
Footnotes
[1]Whether a frame is considered to originate in a certain moduleis determined by the__name__ in the frame globals.