blob: a72876f3f5a8c072fe7bd5db25236ccf055e443e [file] [log] [blame]
Georg Brandlb98273f2010-10-29 05:24:24 +00001.. _debugger:
2
Georg Brandl546e2d62007-09-12 18:04:37 +00003:mod:`pdb` --- The Python Debugger
4==================================
Georg Brandl116aa622007-08-15 14:28:22 +00005
6.. module:: pdb
7 :synopsis: The Python debugger for interactive interpreters.
8
Benjamin Peterson45d929d2014-09-30 16:02:06 -04009**Source code:** :source:`Lib/pdb.py`
10
Georg Brandl116aa622007-08-15 14:28:22 +000011.. index:: single: debugging
12
Terry Jan Reedyfa089b92016-06-11 15:02:54 -040013--------------
14
Georg Brandl116aa622007-08-15 14:28:22 +000015The module :mod:`pdb` defines an interactive source code debugger for Python
16programs. It supports setting (conditional) breakpoints and single stepping at
17the source line level, inspection of stack frames, source code listing, and
18evaluation of arbitrary Python code in the context of any stack frame. It also
19supports post-mortem debugging and can be called under program control.
20
21.. index::
22 single: Pdb (class in pdb)
23 module: bdb
24 module: cmd
25
Georg Brandl02053ee2010-07-18 10:11:03 +000026The debugger is extensible -- it is actually defined as the class :class:`Pdb`.
Georg Brandl116aa622007-08-15 14:28:22 +000027This is currently undocumented but easily understood by reading the source. The
Georg Brandl1f70cdf2010-03-21 09:04:24 +000028extension interface uses the modules :mod:`bdb` and :mod:`cmd`.
Georg Brandl116aa622007-08-15 14:28:22 +000029
30The debugger's prompt is ``(Pdb)``. Typical usage to run a program under control
31of the debugger is::
32
33 >>> import pdb
34 >>> import mymodule
35 >>> pdb.run('mymodule.test()')
36 > <string>(0)?()
37 (Pdb) continue
38 > <string>(1)?()
39 (Pdb) continue
40 NameError: 'spam'
41 > <string>(1)?()
Georg Brandl48310cd2009-01-03 21:18:54 +000042 (Pdb)
Georg Brandl116aa622007-08-15 14:28:22 +000043
Georg Brandl4c7c3c52012-03-10 22:36:48 +010044.. versionchanged:: 3.3
45 Tab-completion via the :mod:`readline` module is available for commands and
46 command arguments, e.g. the current global and local names are offered as
R David Murray78d692f2013-10-10 17:23:26 -040047 arguments of the ``p`` command.
Georg Brandl4c7c3c52012-03-10 22:36:48 +010048
Georg Brandl116aa622007-08-15 14:28:22 +000049:file:`pdb.py` can also be invoked as a script to debug other scripts. For
50example::
51
Georg Brandl45bb63f2009-09-16 09:42:19 +000052 python3 -m pdb myscript.py
Georg Brandl116aa622007-08-15 14:28:22 +000053
54When invoked as a script, pdb will automatically enter post-mortem debugging if
Georg Brandle0230912010-07-30 08:29:39 +000055the program being debugged exits abnormally. After post-mortem debugging (or
56after normal exit of the program), pdb will restart the program. Automatic
Georg Brandl116aa622007-08-15 14:28:22 +000057restarting preserves pdb's state (such as breakpoints) and in most cases is more
58useful than quitting the debugger upon program's exit.
59
Georg Brandle0230912010-07-30 08:29:39 +000060.. versionadded:: 3.2
61 :file:`pdb.py` now accepts a ``-c`` option that executes commands as if given
62 in a :file:`.pdbrc` file, see :ref:`debugger-commands`.
63
Mario Corchero9f1e5f12018-01-06 07:53:05 +000064.. versionadded:: 3.7
65 :file:`pdb.py` now accepts a ``-m`` option that execute modules similar to the way
66 ``python3 -m`` does. As with a script, the debugger will pause execution just
67 before the first line of the module.
68
69
Georg Brandl243ad662009-05-05 09:00:19 +000070The typical usage to break into the debugger from a running program is to
71insert ::
72
73 import pdb; pdb.set_trace()
74
75at the location you want to break into the debugger. You can then step through
Georg Brandl02053ee2010-07-18 10:11:03 +000076the code following this statement, and continue running without the debugger
77using the :pdbcmd:`continue` command.
Georg Brandl243ad662009-05-05 09:00:19 +000078
79The typical usage to inspect a crashed program is::
Georg Brandl116aa622007-08-15 14:28:22 +000080
81 >>> import pdb
82 >>> import mymodule
83 >>> mymodule.test()
84 Traceback (most recent call last):
UltimateCoder88569402017-05-03 22:16:45 +053085 File "<stdin>", line 1, in <module>
Georg Brandl116aa622007-08-15 14:28:22 +000086 File "./mymodule.py", line 4, in test
87 test2()
88 File "./mymodule.py", line 3, in test2
Georg Brandlc9879242007-09-04 07:07:56 +000089 print(spam)
Georg Brandl116aa622007-08-15 14:28:22 +000090 NameError: spam
91 >>> pdb.pm()
92 > ./mymodule.py(3)test2()
Georg Brandlc9879242007-09-04 07:07:56 +000093 -> print(spam)
Georg Brandl48310cd2009-01-03 21:18:54 +000094 (Pdb)
Georg Brandl116aa622007-08-15 14:28:22 +000095
Georg Brandl243ad662009-05-05 09:00:19 +000096
Georg Brandl116aa622007-08-15 14:28:22 +000097The module defines the following functions; each enters the debugger in a
98slightly different way:
99
Georg Brandl18244152009-09-02 20:34:52 +0000100.. function:: run(statement, globals=None, locals=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000101
Georg Brandl46b9afc2010-07-30 09:14:20 +0000102 Execute the *statement* (given as a string or a code object) under debugger
103 control. The debugger prompt appears before any code is executed; you can
104 set breakpoints and type :pdbcmd:`continue`, or you can step through the
105 statement using :pdbcmd:`step` or :pdbcmd:`next` (all these commands are
106 explained below). The optional *globals* and *locals* arguments specify the
107 environment in which the code is executed; by default the dictionary of the
108 module :mod:`__main__` is used. (See the explanation of the built-in
109 :func:`exec` or :func:`eval` functions.)
Georg Brandl116aa622007-08-15 14:28:22 +0000110
111
Georg Brandl18244152009-09-02 20:34:52 +0000112.. function:: runeval(expression, globals=None, locals=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000113
Georg Brandl46b9afc2010-07-30 09:14:20 +0000114 Evaluate the *expression* (given as a string or a code object) under debugger
115 control. When :func:`runeval` returns, it returns the value of the
116 expression. Otherwise this function is similar to :func:`run`.
Georg Brandl116aa622007-08-15 14:28:22 +0000117
118
Georg Brandl18244152009-09-02 20:34:52 +0000119.. function:: runcall(function, *args, **kwds)
Georg Brandl116aa622007-08-15 14:28:22 +0000120
Georg Brandl02053ee2010-07-18 10:11:03 +0000121 Call the *function* (a function or method object, not a string) with the
122 given arguments. When :func:`runcall` returns, it returns whatever the
123 function call returned. The debugger prompt appears as soon as the function
124 is entered.
Georg Brandl116aa622007-08-15 14:28:22 +0000125
126
Barry Warsaw35425d62017-09-22 12:29:42 -0400127.. function:: set_trace(*, header=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000128
Barry Warsaw35425d62017-09-22 12:29:42 -0400129 Enter the debugger at the calling stack frame. This is useful to hard-code
130 a breakpoint at a given point in a program, even if the code is not
131 otherwise being debugged (e.g. when an assertion fails). If given,
Berker Peksag12d60562017-11-04 15:17:56 +0300132 *header* is printed to the console just before debugging begins.
Barry Warsaw35425d62017-09-22 12:29:42 -0400133
Berker Peksag12d60562017-11-04 15:17:56 +0300134 .. versionchanged:: 3.7
135 The keyword-only argument *header*.
Georg Brandl116aa622007-08-15 14:28:22 +0000136
137
Georg Brandl18244152009-09-02 20:34:52 +0000138.. function:: post_mortem(traceback=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000139
Georg Brandl48310cd2009-01-03 21:18:54 +0000140 Enter post-mortem debugging of the given *traceback* object. If no
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000141 *traceback* is given, it uses the one of the exception that is currently
142 being handled (an exception must be being handled if the default is to be
143 used).
Georg Brandl116aa622007-08-15 14:28:22 +0000144
145
146.. function:: pm()
147
Georg Brandl243ad662009-05-05 09:00:19 +0000148 Enter post-mortem debugging of the traceback found in
149 :data:`sys.last_traceback`.
150
151
Eli Bendersky489f3922011-01-14 08:25:03 +0000152The ``run*`` functions and :func:`set_trace` are aliases for instantiating the
Georg Brandl243ad662009-05-05 09:00:19 +0000153:class:`Pdb` class and calling the method of the same name. If you want to
154access further features, you have to do this yourself:
155
Georg Brandl44f2b642010-12-04 16:00:47 +0000156.. class:: Pdb(completekey='tab', stdin=None, stdout=None, skip=None, \
Łukasz Langa2eb6eca2016-09-09 22:21:17 -0700157 nosigint=False, readrc=True)
Georg Brandl243ad662009-05-05 09:00:19 +0000158
159 :class:`Pdb` is the debugger class.
160
161 The *completekey*, *stdin* and *stdout* arguments are passed to the
162 underlying :class:`cmd.Cmd` class; see the description there.
163
164 The *skip* argument, if given, must be an iterable of glob-style module name
165 patterns. The debugger will not step into frames that originate in a module
166 that matches one of these patterns. [1]_
167
Georg Brandl44f2b642010-12-04 16:00:47 +0000168 By default, Pdb sets a handler for the SIGINT signal (which is sent when the
Serhiy Storchaka0424eaf2015-09-12 17:45:25 +0300169 user presses :kbd:`Ctrl-C` on the console) when you give a ``continue`` command.
170 This allows you to break into the debugger again by pressing :kbd:`Ctrl-C`. If you
Terry Jan Reedyde260a62016-08-24 17:52:57 -0400171 want Pdb not to touch the SIGINT handler, set *nosigint* to true.
Georg Brandl44f2b642010-12-04 16:00:47 +0000172
Berker Peksag2d7250b2016-09-10 09:28:03 +0300173 The *readrc* argument defaults to true and controls whether Pdb will load
Łukasz Langa2eb6eca2016-09-09 22:21:17 -0700174 .pdbrc files from the filesystem.
175
Georg Brandl243ad662009-05-05 09:00:19 +0000176 Example call to enable tracing with *skip*::
177
178 import pdb; pdb.Pdb(skip=['django.*']).set_trace()
179
Georg Brandl705d9d52009-05-05 09:29:50 +0000180 .. versionadded:: 3.1
Georg Brandl243ad662009-05-05 09:00:19 +0000181 The *skip* argument.
182
Georg Brandl44f2b642010-12-04 16:00:47 +0000183 .. versionadded:: 3.2
184 The *nosigint* argument. Previously, a SIGINT handler was never set by
185 Pdb.
186
Berker Peksag2d7250b2016-09-10 09:28:03 +0300187 .. versionchanged:: 3.6
Łukasz Langa2eb6eca2016-09-09 22:21:17 -0700188 The *readrc* argument.
189
Georg Brandl18244152009-09-02 20:34:52 +0000190 .. method:: run(statement, globals=None, locals=None)
191 runeval(expression, globals=None, locals=None)
192 runcall(function, *args, **kwds)
Georg Brandl243ad662009-05-05 09:00:19 +0000193 set_trace()
194
195 See the documentation for the functions explained above.
Georg Brandl116aa622007-08-15 14:28:22 +0000196
197
198.. _debugger-commands:
199
200Debugger Commands
Alexander Belopolskyf0a0d142010-10-27 03:06:43 +0000201-----------------
Georg Brandl116aa622007-08-15 14:28:22 +0000202
Georg Brandl02053ee2010-07-18 10:11:03 +0000203The commands recognized by the debugger are listed below. Most commands can be
204abbreviated to one or two letters as indicated; e.g. ``h(elp)`` means that
205either ``h`` or ``help`` can be used to enter the help command (but not ``he``
206or ``hel``, nor ``H`` or ``Help`` or ``HELP``). Arguments to commands must be
207separated by whitespace (spaces or tabs). Optional arguments are enclosed in
208square brackets (``[]``) in the command syntax; the square brackets must not be
209typed. Alternatives in the command syntax are separated by a vertical bar
210(``|``).
Georg Brandl116aa622007-08-15 14:28:22 +0000211
212Entering a blank line repeats the last command entered. Exception: if the last
Georg Brandl02053ee2010-07-18 10:11:03 +0000213command was a :pdbcmd:`list` command, the next 11 lines are listed.
Georg Brandl116aa622007-08-15 14:28:22 +0000214
215Commands that the debugger doesn't recognize are assumed to be Python statements
216and are executed in the context of the program being debugged. Python
217statements can also be prefixed with an exclamation point (``!``). This is a
218powerful way to inspect the program being debugged; it is even possible to
219change a variable or call a function. When an exception occurs in such a
220statement, the exception name is printed but the debugger's state is not
221changed.
222
Georg Brandl02053ee2010-07-18 10:11:03 +0000223The debugger supports :ref:`aliases <debugger-aliases>`. Aliases can have
224parameters which allows one a certain level of adaptability to the context under
225examination.
226
Georg Brandl116aa622007-08-15 14:28:22 +0000227Multiple commands may be entered on a single line, separated by ``;;``. (A
228single ``;`` is not used as it is the separator for multiple commands in a line
Georg Brandl02053ee2010-07-18 10:11:03 +0000229that is passed to the Python parser.) No intelligence is applied to separating
Georg Brandl116aa622007-08-15 14:28:22 +0000230the commands; the input is split at the first ``;;`` pair, even if it is in the
231middle of a quoted string.
232
Georg Brandl116aa622007-08-15 14:28:22 +0000233.. index::
234 pair: .pdbrc; file
235 triple: debugger; configuration; file
236
Georg Brandl02053ee2010-07-18 10:11:03 +0000237If a file :file:`.pdbrc` exists in the user's home directory or in the current
Georg Brandl116aa622007-08-15 14:28:22 +0000238directory, it is read in and executed as if it had been typed at the debugger
Georg Brandl02053ee2010-07-18 10:11:03 +0000239prompt. This is particularly useful for aliases. If both files exist, the one
Georg Brandl116aa622007-08-15 14:28:22 +0000240in the home directory is read first and aliases defined there can be overridden
241by the local file.
242
Georg Brandle0230912010-07-30 08:29:39 +0000243.. versionchanged:: 3.2
244 :file:`.pdbrc` can now contain commands that continue debugging, such as
245 :pdbcmd:`continue` or :pdbcmd:`next`. Previously, these commands had no
246 effect.
247
Georg Brandl02053ee2010-07-18 10:11:03 +0000248
249.. pdbcommand:: h(elp) [command]
250
Georg Brandl116aa622007-08-15 14:28:22 +0000251 Without argument, print the list of available commands. With a *command* as
252 argument, print help about that command. ``help pdb`` displays the full
Georg Brandl55353ca2010-07-19 08:02:46 +0000253 documentation (the docstring of the :mod:`pdb` module). Since the *command*
254 argument must be an identifier, ``help exec`` must be entered to get help on
255 the ``!`` command.
Georg Brandl116aa622007-08-15 14:28:22 +0000256
Georg Brandl02053ee2010-07-18 10:11:03 +0000257.. pdbcommand:: w(here)
258
Georg Brandl116aa622007-08-15 14:28:22 +0000259 Print a stack trace, with the most recent frame at the bottom. An arrow
260 indicates the current frame, which determines the context of most commands.
261
Georg Brandl02053ee2010-07-18 10:11:03 +0000262.. pdbcommand:: d(own) [count]
263
Georg Brandleb1f4aa2010-06-27 10:37:48 +0000264 Move the current frame *count* (default one) levels down in the stack trace
265 (to a newer frame).
Georg Brandl116aa622007-08-15 14:28:22 +0000266
Georg Brandl02053ee2010-07-18 10:11:03 +0000267.. pdbcommand:: u(p) [count]
Georg Brandl116aa622007-08-15 14:28:22 +0000268
Georg Brandl02053ee2010-07-18 10:11:03 +0000269 Move the current frame *count* (default one) levels up in the stack trace (to
270 an older frame).
271
272.. pdbcommand:: b(reak) [([filename:]lineno | function) [, condition]]
273
Georg Brandl116aa622007-08-15 14:28:22 +0000274 With a *lineno* argument, set a break there in the current file. With a
Georg Brandl02053ee2010-07-18 10:11:03 +0000275 *function* argument, set a break at the first executable statement within
276 that function. The line number may be prefixed with a filename and a colon,
277 to specify a breakpoint in another file (probably one that hasn't been loaded
278 yet). The file is searched on :data:`sys.path`. Note that each breakpoint
279 is assigned a number to which all the other breakpoint commands refer.
Georg Brandl116aa622007-08-15 14:28:22 +0000280
Georg Brandl02053ee2010-07-18 10:11:03 +0000281 If a second argument is present, it is an expression which must evaluate to
282 true before the breakpoint is honored.
Georg Brandl116aa622007-08-15 14:28:22 +0000283
Georg Brandl02053ee2010-07-18 10:11:03 +0000284 Without argument, list all breaks, including for each breakpoint, the number
285 of times that breakpoint has been hit, the current ignore count, and the
286 associated condition if any.
Georg Brandl116aa622007-08-15 14:28:22 +0000287
Georg Brandl02053ee2010-07-18 10:11:03 +0000288.. pdbcommand:: tbreak [([filename:]lineno | function) [, condition]]
Georg Brandl116aa622007-08-15 14:28:22 +0000289
Georg Brandl02053ee2010-07-18 10:11:03 +0000290 Temporary breakpoint, which is removed automatically when it is first hit.
291 The arguments are the same as for :pdbcmd:`break`.
292
Senthil Kumaran6f107042010-11-29 11:54:17 +0000293.. pdbcommand:: cl(ear) [filename:lineno | bpnumber [bpnumber ...]]
Georg Brandl02053ee2010-07-18 10:11:03 +0000294
Senthil Kumaran6f107042010-11-29 11:54:17 +0000295 With a *filename:lineno* argument, clear all the breakpoints at this line.
Georg Brandl116aa622007-08-15 14:28:22 +0000296 With a space separated list of breakpoint numbers, clear those breakpoints.
297 Without argument, clear all breaks (but first ask confirmation).
298
Georg Brandl02053ee2010-07-18 10:11:03 +0000299.. pdbcommand:: disable [bpnumber [bpnumber ...]]
Georg Brandl116aa622007-08-15 14:28:22 +0000300
Georg Brandl02053ee2010-07-18 10:11:03 +0000301 Disable the breakpoints given as a space separated list of breakpoint
302 numbers. Disabling a breakpoint means it cannot cause the program to stop
303 execution, but unlike clearing a breakpoint, it remains in the list of
304 breakpoints and can be (re-)enabled.
Georg Brandl116aa622007-08-15 14:28:22 +0000305
Georg Brandl02053ee2010-07-18 10:11:03 +0000306.. pdbcommand:: enable [bpnumber [bpnumber ...]]
Georg Brandl116aa622007-08-15 14:28:22 +0000307
Georg Brandl02053ee2010-07-18 10:11:03 +0000308 Enable the breakpoints specified.
Georg Brandl116aa622007-08-15 14:28:22 +0000309
Georg Brandl02053ee2010-07-18 10:11:03 +0000310.. pdbcommand:: ignore bpnumber [count]
311
312 Set the ignore count for the given breakpoint number. If count is omitted,
313 the ignore count is set to 0. A breakpoint becomes active when the ignore
314 count is zero. When non-zero, the count is decremented each time the
315 breakpoint is reached and the breakpoint is not disabled and any associated
316 condition evaluates to true.
317
318.. pdbcommand:: condition bpnumber [condition]
319
320 Set a new *condition* for the breakpoint, an expression which must evaluate
321 to true before the breakpoint is honored. If *condition* is absent, any
322 existing condition is removed; i.e., the breakpoint is made unconditional.
323
324.. pdbcommand:: commands [bpnumber]
325
Georg Brandl116aa622007-08-15 14:28:22 +0000326 Specify a list of commands for breakpoint number *bpnumber*. The commands
Georg Brandl02053ee2010-07-18 10:11:03 +0000327 themselves appear on the following lines. Type a line containing just
328 ``end`` to terminate the commands. An example::
Georg Brandl116aa622007-08-15 14:28:22 +0000329
330 (Pdb) commands 1
R David Murray78d692f2013-10-10 17:23:26 -0400331 (com) p some_variable
Georg Brandl116aa622007-08-15 14:28:22 +0000332 (com) end
333 (Pdb)
334
Stéphane Wirtel67adb312018-01-30 10:34:33 +0100335 To remove all commands from a breakpoint, type ``commands`` and follow it
Georg Brandl02053ee2010-07-18 10:11:03 +0000336 immediately with ``end``; that is, give no commands.
Georg Brandl116aa622007-08-15 14:28:22 +0000337
Stéphane Wirtel67adb312018-01-30 10:34:33 +0100338 With no *bpnumber* argument, ``commands`` refers to the last breakpoint set.
Georg Brandl116aa622007-08-15 14:28:22 +0000339
Georg Brandl02053ee2010-07-18 10:11:03 +0000340 You can use breakpoint commands to start your program up again. Simply use
Stéphane Wirtel67adb312018-01-30 10:34:33 +0100341 the :pdbcmd:`continue` command, or :pdbcmd:`step`,
342 or any other command that resumes execution.
Georg Brandl116aa622007-08-15 14:28:22 +0000343
Stéphane Wirtel67adb312018-01-30 10:34:33 +0100344 Specifying any command resuming execution
345 (currently :pdbcmd:`continue`, :pdbcmd:`step`, :pdbcmd:`next`,
346 :pdbcmd:`return`, :pdbcmd:`jump`, :pdbcmd:`quit` and their abbreviations)
Julien Palard7943c5e2018-07-06 11:15:13 +0200347 terminates the command list (as if
Georg Brandl116aa622007-08-15 14:28:22 +0000348 that command was immediately followed by end). This is because any time you
Georg Brandl9afde1c2007-11-01 20:32:30 +0000349 resume execution (even with a simple next or step), you may encounter another
Martin Panter357ed2e2016-11-21 00:15:20 +0000350 breakpoint—which could have its own command list, leading to ambiguities about
Georg Brandl116aa622007-08-15 14:28:22 +0000351 which list to execute.
352
353 If you use the 'silent' command in the command list, the usual message about
354 stopping at a breakpoint is not printed. This may be desirable for breakpoints
355 that are to print a specific message and then continue. If none of the other
356 commands print anything, you see no sign that the breakpoint was reached.
357
Georg Brandl02053ee2010-07-18 10:11:03 +0000358.. pdbcommand:: s(tep)
359
Georg Brandl116aa622007-08-15 14:28:22 +0000360 Execute the current line, stop at the first possible occasion (either in a
361 function that is called or on the next line in the current function).
362
Georg Brandl02053ee2010-07-18 10:11:03 +0000363.. pdbcommand:: n(ext)
Georg Brandl116aa622007-08-15 14:28:22 +0000364
Georg Brandl02053ee2010-07-18 10:11:03 +0000365 Continue execution until the next line in the current function is reached or
366 it returns. (The difference between :pdbcmd:`next` and :pdbcmd:`step` is
367 that :pdbcmd:`step` stops inside a called function, while :pdbcmd:`next`
368 executes called functions at (nearly) full speed, only stopping at the next
369 line in the current function.)
370
Georg Brandl2dfec552010-07-30 08:43:32 +0000371.. pdbcommand:: unt(il) [lineno]
Georg Brandl02053ee2010-07-18 10:11:03 +0000372
Georg Brandl2dfec552010-07-30 08:43:32 +0000373 Without argument, continue execution until the line with a number greater
374 than the current one is reached.
375
376 With a line number, continue execution until a line with a number greater or
377 equal to that is reached. In both cases, also stop when the current frame
378 returns.
Alexandre Vassalotti5f8ced22008-05-16 00:03:33 +0000379
Georg Brandl26a0f872010-07-30 08:45:26 +0000380 .. versionchanged:: 3.2
381 Allow giving an explicit line number.
382
Georg Brandl02053ee2010-07-18 10:11:03 +0000383.. pdbcommand:: r(eturn)
384
Georg Brandl116aa622007-08-15 14:28:22 +0000385 Continue execution until the current function returns.
386
Georg Brandl02053ee2010-07-18 10:11:03 +0000387.. pdbcommand:: c(ont(inue))
388
Georg Brandl116aa622007-08-15 14:28:22 +0000389 Continue execution, only stop when a breakpoint is encountered.
390
Georg Brandl02053ee2010-07-18 10:11:03 +0000391.. pdbcommand:: j(ump) lineno
Georg Brandl116aa622007-08-15 14:28:22 +0000392
Georg Brandl02053ee2010-07-18 10:11:03 +0000393 Set the next line that will be executed. Only available in the bottom-most
394 frame. This lets you jump back and execute code again, or jump forward to
395 skip code that you don't want to run.
396
397 It should be noted that not all jumps are allowed -- for instance it is not
Georg Brandl116aa622007-08-15 14:28:22 +0000398 possible to jump into the middle of a :keyword:`for` loop or out of a
399 :keyword:`finally` clause.
400
Georg Brandl02053ee2010-07-18 10:11:03 +0000401.. pdbcommand:: l(ist) [first[, last]]
Georg Brandl116aa622007-08-15 14:28:22 +0000402
Georg Brandl02053ee2010-07-18 10:11:03 +0000403 List source code for the current file. Without arguments, list 11 lines
Georg Brandla5eacee2010-07-23 16:55:26 +0000404 around the current line or continue the previous listing. With ``.`` as
405 argument, list 11 lines around the current line. With one argument,
Georg Brandl02053ee2010-07-18 10:11:03 +0000406 list 11 lines around at that line. With two arguments, list the given range;
407 if the second argument is less than the first, it is interpreted as a count.
408
Georg Brandl0a9c3e92010-07-30 18:46:38 +0000409 The current line in the current frame is indicated by ``->``. If an
410 exception is being debugged, the line where the exception was originally
411 raised or propagated is indicated by ``>>``, if it differs from the current
412 line.
413
414 .. versionadded:: 3.2
415 The ``>>`` marker.
416
Georg Brandle59ca2a2010-07-30 17:04:28 +0000417.. pdbcommand:: ll | longlist
418
Georg Brandl0a9c3e92010-07-30 18:46:38 +0000419 List all source code for the current function or frame. Interesting lines
420 are marked as for :pdbcmd:`list`.
Georg Brandle59ca2a2010-07-30 17:04:28 +0000421
422 .. versionadded:: 3.2
423
Georg Brandl02053ee2010-07-18 10:11:03 +0000424.. pdbcommand:: a(rgs)
425
Georg Brandl116aa622007-08-15 14:28:22 +0000426 Print the argument list of the current function.
427
R David Murrayd5793762013-10-10 17:33:43 -0400428.. pdbcommand:: p expression
Georg Brandl02053ee2010-07-18 10:11:03 +0000429
Georg Brandl116aa622007-08-15 14:28:22 +0000430 Evaluate the *expression* in the current context and print its value.
431
R David Murrayd5793762013-10-10 17:33:43 -0400432 .. note::
433
434 ``print()`` can also be used, but is not a debugger command --- this executes the
435 Python :func:`print` function.
436
437
Georg Brandl02053ee2010-07-18 10:11:03 +0000438.. pdbcommand:: pp expression
Georg Brandl116aa622007-08-15 14:28:22 +0000439
R David Murray78d692f2013-10-10 17:23:26 -0400440 Like the :pdbcmd:`p` command, except the value of the expression is
Georg Brandl02053ee2010-07-18 10:11:03 +0000441 pretty-printed using the :mod:`pprint` module.
Georg Brandl116aa622007-08-15 14:28:22 +0000442
Georg Brandl02053ee2010-07-18 10:11:03 +0000443.. pdbcommand:: whatis expression
444
445 Print the type of the *expression*.
446
Georg Brandle59ca2a2010-07-30 17:04:28 +0000447.. pdbcommand:: source expression
448
449 Try to get source code for the given object and display it.
450
451 .. versionadded:: 3.2
452
Georg Brandlcbc79c72010-12-04 16:21:42 +0000453.. pdbcommand:: display [expression]
454
455 Display the value of the expression if it changed, each time execution stops
456 in the current frame.
457
458 Without expression, list all display expressions for the current frame.
459
460 .. versionadded:: 3.2
461
462.. pdbcommand:: undisplay [expression]
463
464 Do not display the expression any more in the current frame. Without
465 expression, clear all display expressions for the current frame.
466
467 .. versionadded:: 3.2
468
Georg Brandl1acb7462010-12-04 11:20:26 +0000469.. pdbcommand:: interact
470
Martin Panter69332c12016-08-04 13:07:31 +0000471 Start an interactive interpreter (using the :mod:`code` module) whose global
Georg Brandl1acb7462010-12-04 11:20:26 +0000472 namespace contains all the (global and local) names found in the current
473 scope.
474
475 .. versionadded:: 3.2
476
Georg Brandl02053ee2010-07-18 10:11:03 +0000477.. _debugger-aliases:
478
479.. pdbcommand:: alias [name [command]]
480
481 Create an alias called *name* that executes *command*. The command must
482 *not* be enclosed in quotes. Replaceable parameters can be indicated by
483 ``%1``, ``%2``, and so on, while ``%*`` is replaced by all the parameters.
484 If no command is given, the current alias for *name* is shown. If no
485 arguments are given, all aliases are listed.
486
487 Aliases may be nested and can contain anything that can be legally typed at
488 the pdb prompt. Note that internal pdb commands *can* be overridden by
489 aliases. Such a command is then hidden until the alias is removed. Aliasing
490 is recursively applied to the first word of the command line; all other words
491 in the line are left alone.
Georg Brandl116aa622007-08-15 14:28:22 +0000492
493 As an example, here are two useful aliases (especially when placed in the
494 :file:`.pdbrc` file)::
495
Georg Brandle0230912010-07-30 08:29:39 +0000496 # Print instance variables (usage "pi classInst")
Georg Brandlc9879242007-09-04 07:07:56 +0000497 alias pi for k in %1.__dict__.keys(): print("%1.",k,"=",%1.__dict__[k])
Georg Brandle0230912010-07-30 08:29:39 +0000498 # Print instance variables in self
Georg Brandl116aa622007-08-15 14:28:22 +0000499 alias ps pi self
500
Georg Brandl02053ee2010-07-18 10:11:03 +0000501.. pdbcommand:: unalias name
Georg Brandl116aa622007-08-15 14:28:22 +0000502
Georg Brandl02053ee2010-07-18 10:11:03 +0000503 Delete the specified alias.
504
505.. pdbcommand:: ! statement
506
Georg Brandl116aa622007-08-15 14:28:22 +0000507 Execute the (one-line) *statement* in the context of the current stack frame.
508 The exclamation point can be omitted unless the first word of the statement
Georg Brandl02053ee2010-07-18 10:11:03 +0000509 resembles a debugger command. To set a global variable, you can prefix the
510 assignment command with a :keyword:`global` statement on the same line,
511 e.g.::
Georg Brandl116aa622007-08-15 14:28:22 +0000512
513 (Pdb) global list_options; list_options = ['-l']
514 (Pdb)
515
Georg Brandl02053ee2010-07-18 10:11:03 +0000516.. pdbcommand:: run [args ...]
517 restart [args ...]
Georg Brandl116aa622007-08-15 14:28:22 +0000518
Georg Brandl02053ee2010-07-18 10:11:03 +0000519 Restart the debugged Python program. If an argument is supplied, it is split
520 with :mod:`shlex` and the result is used as the new :data:`sys.argv`.
521 History, breakpoints, actions and debugger options are preserved.
522 :pdbcmd:`restart` is an alias for :pdbcmd:`run`.
523
524.. pdbcommand:: q(uit)
525
526 Quit from the debugger. The program being executed is aborted.
Georg Brandl243ad662009-05-05 09:00:19 +0000527
528
529.. rubric:: Footnotes
530
531.. [1] Whether a frame is considered to originate in a certain module
532 is determined by the ``__name__`` in the frame globals.