blob: f4e37ac2a6b7800517fa7f718235a6e9c54f0081 [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
9
10.. index:: single: debugging
11
12The module :mod:`pdb` defines an interactive source code debugger for Python
13programs. It supports setting (conditional) breakpoints and single stepping at
14the source line level, inspection of stack frames, source code listing, and
15evaluation of arbitrary Python code in the context of any stack frame. It also
16supports post-mortem debugging and can be called under program control.
17
18.. index::
19 single: Pdb (class in pdb)
20 module: bdb
21 module: cmd
22
Georg Brandl02053ee2010-07-18 10:11:03 +000023The debugger is extensible -- it is actually defined as the class :class:`Pdb`.
Georg Brandl116aa622007-08-15 14:28:22 +000024This is currently undocumented but easily understood by reading the source. The
Georg Brandl1f70cdf2010-03-21 09:04:24 +000025extension interface uses the modules :mod:`bdb` and :mod:`cmd`.
Georg Brandl116aa622007-08-15 14:28:22 +000026
27The debugger's prompt is ``(Pdb)``. Typical usage to run a program under control
28of the debugger is::
29
30 >>> import pdb
31 >>> import mymodule
32 >>> pdb.run('mymodule.test()')
33 > <string>(0)?()
34 (Pdb) continue
35 > <string>(1)?()
36 (Pdb) continue
37 NameError: 'spam'
38 > <string>(1)?()
Georg Brandl48310cd2009-01-03 21:18:54 +000039 (Pdb)
Georg Brandl116aa622007-08-15 14:28:22 +000040
Georg Brandl4c7c3c52012-03-10 22:36:48 +010041.. versionchanged:: 3.3
42 Tab-completion via the :mod:`readline` module is available for commands and
43 command arguments, e.g. the current global and local names are offered as
44 arguments of the ``print`` command.
45
Georg Brandl116aa622007-08-15 14:28:22 +000046:file:`pdb.py` can also be invoked as a script to debug other scripts. For
47example::
48
Georg Brandl45bb63f2009-09-16 09:42:19 +000049 python3 -m pdb myscript.py
Georg Brandl116aa622007-08-15 14:28:22 +000050
51When invoked as a script, pdb will automatically enter post-mortem debugging if
Georg Brandle0230912010-07-30 08:29:39 +000052the program being debugged exits abnormally. After post-mortem debugging (or
53after normal exit of the program), pdb will restart the program. Automatic
Georg Brandl116aa622007-08-15 14:28:22 +000054restarting preserves pdb's state (such as breakpoints) and in most cases is more
55useful than quitting the debugger upon program's exit.
56
Georg Brandle0230912010-07-30 08:29:39 +000057.. versionadded:: 3.2
58 :file:`pdb.py` now accepts a ``-c`` option that executes commands as if given
59 in a :file:`.pdbrc` file, see :ref:`debugger-commands`.
60
Georg Brandl243ad662009-05-05 09:00:19 +000061The typical usage to break into the debugger from a running program is to
62insert ::
63
64 import pdb; pdb.set_trace()
65
66at the location you want to break into the debugger. You can then step through
Georg Brandl02053ee2010-07-18 10:11:03 +000067the code following this statement, and continue running without the debugger
68using the :pdbcmd:`continue` command.
Georg Brandl243ad662009-05-05 09:00:19 +000069
70The typical usage to inspect a crashed program is::
Georg Brandl116aa622007-08-15 14:28:22 +000071
72 >>> import pdb
73 >>> import mymodule
74 >>> mymodule.test()
75 Traceback (most recent call last):
76 File "<stdin>", line 1, in ?
77 File "./mymodule.py", line 4, in test
78 test2()
79 File "./mymodule.py", line 3, in test2
Georg Brandlc9879242007-09-04 07:07:56 +000080 print(spam)
Georg Brandl116aa622007-08-15 14:28:22 +000081 NameError: spam
82 >>> pdb.pm()
83 > ./mymodule.py(3)test2()
Georg Brandlc9879242007-09-04 07:07:56 +000084 -> print(spam)
Georg Brandl48310cd2009-01-03 21:18:54 +000085 (Pdb)
Georg Brandl116aa622007-08-15 14:28:22 +000086
Georg Brandl243ad662009-05-05 09:00:19 +000087
Georg Brandl116aa622007-08-15 14:28:22 +000088The module defines the following functions; each enters the debugger in a
89slightly different way:
90
Georg Brandl18244152009-09-02 20:34:52 +000091.. function:: run(statement, globals=None, locals=None)
Georg Brandl116aa622007-08-15 14:28:22 +000092
Georg Brandl46b9afc2010-07-30 09:14:20 +000093 Execute the *statement* (given as a string or a code object) under debugger
94 control. The debugger prompt appears before any code is executed; you can
95 set breakpoints and type :pdbcmd:`continue`, or you can step through the
96 statement using :pdbcmd:`step` or :pdbcmd:`next` (all these commands are
97 explained below). The optional *globals* and *locals* arguments specify the
98 environment in which the code is executed; by default the dictionary of the
99 module :mod:`__main__` is used. (See the explanation of the built-in
100 :func:`exec` or :func:`eval` functions.)
Georg Brandl116aa622007-08-15 14:28:22 +0000101
102
Georg Brandl18244152009-09-02 20:34:52 +0000103.. function:: runeval(expression, globals=None, locals=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000104
Georg Brandl46b9afc2010-07-30 09:14:20 +0000105 Evaluate the *expression* (given as a string or a code object) under debugger
106 control. When :func:`runeval` returns, it returns the value of the
107 expression. Otherwise this function is similar to :func:`run`.
Georg Brandl116aa622007-08-15 14:28:22 +0000108
109
Georg Brandl18244152009-09-02 20:34:52 +0000110.. function:: runcall(function, *args, **kwds)
Georg Brandl116aa622007-08-15 14:28:22 +0000111
Georg Brandl02053ee2010-07-18 10:11:03 +0000112 Call the *function* (a function or method object, not a string) with the
113 given arguments. When :func:`runcall` returns, it returns whatever the
114 function call returned. The debugger prompt appears as soon as the function
115 is entered.
Georg Brandl116aa622007-08-15 14:28:22 +0000116
117
118.. function:: set_trace()
119
120 Enter the debugger at the calling stack frame. This is useful to hard-code a
121 breakpoint at a given point in a program, even if the code is not otherwise
122 being debugged (e.g. when an assertion fails).
123
124
Georg Brandl18244152009-09-02 20:34:52 +0000125.. function:: post_mortem(traceback=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000126
Georg Brandl48310cd2009-01-03 21:18:54 +0000127 Enter post-mortem debugging of the given *traceback* object. If no
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000128 *traceback* is given, it uses the one of the exception that is currently
129 being handled (an exception must be being handled if the default is to be
130 used).
Georg Brandl116aa622007-08-15 14:28:22 +0000131
132
133.. function:: pm()
134
Georg Brandl243ad662009-05-05 09:00:19 +0000135 Enter post-mortem debugging of the traceback found in
136 :data:`sys.last_traceback`.
137
138
Eli Bendersky489f3922011-01-14 08:25:03 +0000139The ``run*`` functions and :func:`set_trace` are aliases for instantiating the
Georg Brandl243ad662009-05-05 09:00:19 +0000140:class:`Pdb` class and calling the method of the same name. If you want to
141access further features, you have to do this yourself:
142
Georg Brandl44f2b642010-12-04 16:00:47 +0000143.. class:: Pdb(completekey='tab', stdin=None, stdout=None, skip=None, \
144 nosigint=False)
Georg Brandl243ad662009-05-05 09:00:19 +0000145
146 :class:`Pdb` is the debugger class.
147
148 The *completekey*, *stdin* and *stdout* arguments are passed to the
149 underlying :class:`cmd.Cmd` class; see the description there.
150
151 The *skip* argument, if given, must be an iterable of glob-style module name
152 patterns. The debugger will not step into frames that originate in a module
153 that matches one of these patterns. [1]_
154
Georg Brandl44f2b642010-12-04 16:00:47 +0000155 By default, Pdb sets a handler for the SIGINT signal (which is sent when the
156 user presses Ctrl-C on the console) when you give a ``continue`` command.
157 This allows you to break into the debugger again by pressing Ctrl-C. If you
158 want Pdb not to touch the SIGINT handler, set *nosigint* tot true.
159
Georg Brandl243ad662009-05-05 09:00:19 +0000160 Example call to enable tracing with *skip*::
161
162 import pdb; pdb.Pdb(skip=['django.*']).set_trace()
163
Georg Brandl705d9d52009-05-05 09:29:50 +0000164 .. versionadded:: 3.1
Georg Brandl243ad662009-05-05 09:00:19 +0000165 The *skip* argument.
166
Georg Brandl44f2b642010-12-04 16:00:47 +0000167 .. versionadded:: 3.2
168 The *nosigint* argument. Previously, a SIGINT handler was never set by
169 Pdb.
170
Georg Brandl18244152009-09-02 20:34:52 +0000171 .. method:: run(statement, globals=None, locals=None)
172 runeval(expression, globals=None, locals=None)
173 runcall(function, *args, **kwds)
Georg Brandl243ad662009-05-05 09:00:19 +0000174 set_trace()
175
176 See the documentation for the functions explained above.
Georg Brandl116aa622007-08-15 14:28:22 +0000177
178
179.. _debugger-commands:
180
181Debugger Commands
Alexander Belopolskyf0a0d142010-10-27 03:06:43 +0000182-----------------
Georg Brandl116aa622007-08-15 14:28:22 +0000183
Georg Brandl02053ee2010-07-18 10:11:03 +0000184The commands recognized by the debugger are listed below. Most commands can be
185abbreviated to one or two letters as indicated; e.g. ``h(elp)`` means that
186either ``h`` or ``help`` can be used to enter the help command (but not ``he``
187or ``hel``, nor ``H`` or ``Help`` or ``HELP``). Arguments to commands must be
188separated by whitespace (spaces or tabs). Optional arguments are enclosed in
189square brackets (``[]``) in the command syntax; the square brackets must not be
190typed. Alternatives in the command syntax are separated by a vertical bar
191(``|``).
Georg Brandl116aa622007-08-15 14:28:22 +0000192
193Entering a blank line repeats the last command entered. Exception: if the last
Georg Brandl02053ee2010-07-18 10:11:03 +0000194command was a :pdbcmd:`list` command, the next 11 lines are listed.
Georg Brandl116aa622007-08-15 14:28:22 +0000195
196Commands that the debugger doesn't recognize are assumed to be Python statements
197and are executed in the context of the program being debugged. Python
198statements can also be prefixed with an exclamation point (``!``). This is a
199powerful way to inspect the program being debugged; it is even possible to
200change a variable or call a function. When an exception occurs in such a
201statement, the exception name is printed but the debugger's state is not
202changed.
203
Georg Brandl02053ee2010-07-18 10:11:03 +0000204The debugger supports :ref:`aliases <debugger-aliases>`. Aliases can have
205parameters which allows one a certain level of adaptability to the context under
206examination.
207
Georg Brandl116aa622007-08-15 14:28:22 +0000208Multiple commands may be entered on a single line, separated by ``;;``. (A
209single ``;`` is not used as it is the separator for multiple commands in a line
Georg Brandl02053ee2010-07-18 10:11:03 +0000210that is passed to the Python parser.) No intelligence is applied to separating
Georg Brandl116aa622007-08-15 14:28:22 +0000211the commands; the input is split at the first ``;;`` pair, even if it is in the
212middle of a quoted string.
213
Georg Brandl116aa622007-08-15 14:28:22 +0000214.. index::
215 pair: .pdbrc; file
216 triple: debugger; configuration; file
217
Georg Brandl02053ee2010-07-18 10:11:03 +0000218If a file :file:`.pdbrc` exists in the user's home directory or in the current
Georg Brandl116aa622007-08-15 14:28:22 +0000219directory, it is read in and executed as if it had been typed at the debugger
Georg Brandl02053ee2010-07-18 10:11:03 +0000220prompt. This is particularly useful for aliases. If both files exist, the one
Georg Brandl116aa622007-08-15 14:28:22 +0000221in the home directory is read first and aliases defined there can be overridden
222by the local file.
223
Georg Brandle0230912010-07-30 08:29:39 +0000224.. versionchanged:: 3.2
225 :file:`.pdbrc` can now contain commands that continue debugging, such as
226 :pdbcmd:`continue` or :pdbcmd:`next`. Previously, these commands had no
227 effect.
228
Georg Brandl02053ee2010-07-18 10:11:03 +0000229
230.. pdbcommand:: h(elp) [command]
231
Georg Brandl116aa622007-08-15 14:28:22 +0000232 Without argument, print the list of available commands. With a *command* as
233 argument, print help about that command. ``help pdb`` displays the full
Georg Brandl55353ca2010-07-19 08:02:46 +0000234 documentation (the docstring of the :mod:`pdb` module). Since the *command*
235 argument must be an identifier, ``help exec`` must be entered to get help on
236 the ``!`` command.
Georg Brandl116aa622007-08-15 14:28:22 +0000237
Georg Brandl02053ee2010-07-18 10:11:03 +0000238.. pdbcommand:: w(here)
239
Georg Brandl116aa622007-08-15 14:28:22 +0000240 Print a stack trace, with the most recent frame at the bottom. An arrow
241 indicates the current frame, which determines the context of most commands.
242
Georg Brandl02053ee2010-07-18 10:11:03 +0000243.. pdbcommand:: d(own) [count]
244
Georg Brandleb1f4aa2010-06-27 10:37:48 +0000245 Move the current frame *count* (default one) levels down in the stack trace
246 (to a newer frame).
Georg Brandl116aa622007-08-15 14:28:22 +0000247
Georg Brandl02053ee2010-07-18 10:11:03 +0000248.. pdbcommand:: u(p) [count]
Georg Brandl116aa622007-08-15 14:28:22 +0000249
Georg Brandl02053ee2010-07-18 10:11:03 +0000250 Move the current frame *count* (default one) levels up in the stack trace (to
251 an older frame).
252
253.. pdbcommand:: b(reak) [([filename:]lineno | function) [, condition]]
254
Georg Brandl116aa622007-08-15 14:28:22 +0000255 With a *lineno* argument, set a break there in the current file. With a
Georg Brandl02053ee2010-07-18 10:11:03 +0000256 *function* argument, set a break at the first executable statement within
257 that function. The line number may be prefixed with a filename and a colon,
258 to specify a breakpoint in another file (probably one that hasn't been loaded
259 yet). The file is searched on :data:`sys.path`. Note that each breakpoint
260 is assigned a number to which all the other breakpoint commands refer.
Georg Brandl116aa622007-08-15 14:28:22 +0000261
Georg Brandl02053ee2010-07-18 10:11:03 +0000262 If a second argument is present, it is an expression which must evaluate to
263 true before the breakpoint is honored.
Georg Brandl116aa622007-08-15 14:28:22 +0000264
Georg Brandl02053ee2010-07-18 10:11:03 +0000265 Without argument, list all breaks, including for each breakpoint, the number
266 of times that breakpoint has been hit, the current ignore count, and the
267 associated condition if any.
Georg Brandl116aa622007-08-15 14:28:22 +0000268
Georg Brandl02053ee2010-07-18 10:11:03 +0000269.. pdbcommand:: tbreak [([filename:]lineno | function) [, condition]]
Georg Brandl116aa622007-08-15 14:28:22 +0000270
Georg Brandl02053ee2010-07-18 10:11:03 +0000271 Temporary breakpoint, which is removed automatically when it is first hit.
272 The arguments are the same as for :pdbcmd:`break`.
273
Senthil Kumaran6f107042010-11-29 11:54:17 +0000274.. pdbcommand:: cl(ear) [filename:lineno | bpnumber [bpnumber ...]]
Georg Brandl02053ee2010-07-18 10:11:03 +0000275
Senthil Kumaran6f107042010-11-29 11:54:17 +0000276 With a *filename:lineno* argument, clear all the breakpoints at this line.
Georg Brandl116aa622007-08-15 14:28:22 +0000277 With a space separated list of breakpoint numbers, clear those breakpoints.
278 Without argument, clear all breaks (but first ask confirmation).
279
Georg Brandl02053ee2010-07-18 10:11:03 +0000280.. pdbcommand:: disable [bpnumber [bpnumber ...]]
Georg Brandl116aa622007-08-15 14:28:22 +0000281
Georg Brandl02053ee2010-07-18 10:11:03 +0000282 Disable the breakpoints given as a space separated list of breakpoint
283 numbers. Disabling a breakpoint means it cannot cause the program to stop
284 execution, but unlike clearing a breakpoint, it remains in the list of
285 breakpoints and can be (re-)enabled.
Georg Brandl116aa622007-08-15 14:28:22 +0000286
Georg Brandl02053ee2010-07-18 10:11:03 +0000287.. pdbcommand:: enable [bpnumber [bpnumber ...]]
Georg Brandl116aa622007-08-15 14:28:22 +0000288
Georg Brandl02053ee2010-07-18 10:11:03 +0000289 Enable the breakpoints specified.
Georg Brandl116aa622007-08-15 14:28:22 +0000290
Georg Brandl02053ee2010-07-18 10:11:03 +0000291.. pdbcommand:: ignore bpnumber [count]
292
293 Set the ignore count for the given breakpoint number. If count is omitted,
294 the ignore count is set to 0. A breakpoint becomes active when the ignore
295 count is zero. When non-zero, the count is decremented each time the
296 breakpoint is reached and the breakpoint is not disabled and any associated
297 condition evaluates to true.
298
299.. pdbcommand:: condition bpnumber [condition]
300
301 Set a new *condition* for the breakpoint, an expression which must evaluate
302 to true before the breakpoint is honored. If *condition* is absent, any
303 existing condition is removed; i.e., the breakpoint is made unconditional.
304
305.. pdbcommand:: commands [bpnumber]
306
Georg Brandl116aa622007-08-15 14:28:22 +0000307 Specify a list of commands for breakpoint number *bpnumber*. The commands
Georg Brandl02053ee2010-07-18 10:11:03 +0000308 themselves appear on the following lines. Type a line containing just
309 ``end`` to terminate the commands. An example::
Georg Brandl116aa622007-08-15 14:28:22 +0000310
311 (Pdb) commands 1
312 (com) print some_variable
313 (com) end
314 (Pdb)
315
316 To remove all commands from a breakpoint, type commands and follow it
Georg Brandl02053ee2010-07-18 10:11:03 +0000317 immediately with ``end``; that is, give no commands.
Georg Brandl116aa622007-08-15 14:28:22 +0000318
319 With no *bpnumber* argument, commands refers to the last breakpoint set.
320
Georg Brandl02053ee2010-07-18 10:11:03 +0000321 You can use breakpoint commands to start your program up again. Simply use
322 the continue command, or step, or any other command that resumes execution.
Georg Brandl116aa622007-08-15 14:28:22 +0000323
324 Specifying any command resuming execution (currently continue, step, next,
325 return, jump, quit and their abbreviations) terminates the command list (as if
326 that command was immediately followed by end). This is because any time you
Georg Brandl9afde1c2007-11-01 20:32:30 +0000327 resume execution (even with a simple next or step), you may encounter another
Georg Brandl116aa622007-08-15 14:28:22 +0000328 breakpoint--which could have its own command list, leading to ambiguities about
329 which list to execute.
330
331 If you use the 'silent' command in the command list, the usual message about
332 stopping at a breakpoint is not printed. This may be desirable for breakpoints
333 that are to print a specific message and then continue. If none of the other
334 commands print anything, you see no sign that the breakpoint was reached.
335
Georg Brandl02053ee2010-07-18 10:11:03 +0000336.. pdbcommand:: s(tep)
337
Georg Brandl116aa622007-08-15 14:28:22 +0000338 Execute the current line, stop at the first possible occasion (either in a
339 function that is called or on the next line in the current function).
340
Georg Brandl02053ee2010-07-18 10:11:03 +0000341.. pdbcommand:: n(ext)
Georg Brandl116aa622007-08-15 14:28:22 +0000342
Georg Brandl02053ee2010-07-18 10:11:03 +0000343 Continue execution until the next line in the current function is reached or
344 it returns. (The difference between :pdbcmd:`next` and :pdbcmd:`step` is
345 that :pdbcmd:`step` stops inside a called function, while :pdbcmd:`next`
346 executes called functions at (nearly) full speed, only stopping at the next
347 line in the current function.)
348
Georg Brandl2dfec552010-07-30 08:43:32 +0000349.. pdbcommand:: unt(il) [lineno]
Georg Brandl02053ee2010-07-18 10:11:03 +0000350
Georg Brandl2dfec552010-07-30 08:43:32 +0000351 Without argument, continue execution until the line with a number greater
352 than the current one is reached.
353
354 With a line number, continue execution until a line with a number greater or
355 equal to that is reached. In both cases, also stop when the current frame
356 returns.
Alexandre Vassalotti5f8ced22008-05-16 00:03:33 +0000357
Georg Brandl26a0f872010-07-30 08:45:26 +0000358 .. versionchanged:: 3.2
359 Allow giving an explicit line number.
360
Georg Brandl02053ee2010-07-18 10:11:03 +0000361.. pdbcommand:: r(eturn)
362
Georg Brandl116aa622007-08-15 14:28:22 +0000363 Continue execution until the current function returns.
364
Georg Brandl02053ee2010-07-18 10:11:03 +0000365.. pdbcommand:: c(ont(inue))
366
Georg Brandl116aa622007-08-15 14:28:22 +0000367 Continue execution, only stop when a breakpoint is encountered.
368
Georg Brandl02053ee2010-07-18 10:11:03 +0000369.. pdbcommand:: j(ump) lineno
Georg Brandl116aa622007-08-15 14:28:22 +0000370
Georg Brandl02053ee2010-07-18 10:11:03 +0000371 Set the next line that will be executed. Only available in the bottom-most
372 frame. This lets you jump back and execute code again, or jump forward to
373 skip code that you don't want to run.
374
375 It should be noted that not all jumps are allowed -- for instance it is not
Georg Brandl116aa622007-08-15 14:28:22 +0000376 possible to jump into the middle of a :keyword:`for` loop or out of a
377 :keyword:`finally` clause.
378
Georg Brandl02053ee2010-07-18 10:11:03 +0000379.. pdbcommand:: l(ist) [first[, last]]
Georg Brandl116aa622007-08-15 14:28:22 +0000380
Georg Brandl02053ee2010-07-18 10:11:03 +0000381 List source code for the current file. Without arguments, list 11 lines
Georg Brandla5eacee2010-07-23 16:55:26 +0000382 around the current line or continue the previous listing. With ``.`` as
383 argument, list 11 lines around the current line. With one argument,
Georg Brandl02053ee2010-07-18 10:11:03 +0000384 list 11 lines around at that line. With two arguments, list the given range;
385 if the second argument is less than the first, it is interpreted as a count.
386
Georg Brandl0a9c3e92010-07-30 18:46:38 +0000387 The current line in the current frame is indicated by ``->``. If an
388 exception is being debugged, the line where the exception was originally
389 raised or propagated is indicated by ``>>``, if it differs from the current
390 line.
391
392 .. versionadded:: 3.2
393 The ``>>`` marker.
394
Georg Brandle59ca2a2010-07-30 17:04:28 +0000395.. pdbcommand:: ll | longlist
396
Georg Brandl0a9c3e92010-07-30 18:46:38 +0000397 List all source code for the current function or frame. Interesting lines
398 are marked as for :pdbcmd:`list`.
Georg Brandle59ca2a2010-07-30 17:04:28 +0000399
400 .. versionadded:: 3.2
401
Georg Brandl02053ee2010-07-18 10:11:03 +0000402.. pdbcommand:: a(rgs)
403
Georg Brandl116aa622007-08-15 14:28:22 +0000404 Print the argument list of the current function.
405
Georg Brandl02053ee2010-07-18 10:11:03 +0000406.. pdbcommand:: p(rint) expression
407
Georg Brandl116aa622007-08-15 14:28:22 +0000408 Evaluate the *expression* in the current context and print its value.
409
Georg Brandl02053ee2010-07-18 10:11:03 +0000410.. pdbcommand:: pp expression
Georg Brandl116aa622007-08-15 14:28:22 +0000411
Georg Brandl02053ee2010-07-18 10:11:03 +0000412 Like the :pdbcmd:`print` command, except the value of the expression is
413 pretty-printed using the :mod:`pprint` module.
Georg Brandl116aa622007-08-15 14:28:22 +0000414
Georg Brandl02053ee2010-07-18 10:11:03 +0000415.. pdbcommand:: whatis expression
416
417 Print the type of the *expression*.
418
Georg Brandle59ca2a2010-07-30 17:04:28 +0000419.. pdbcommand:: source expression
420
421 Try to get source code for the given object and display it.
422
423 .. versionadded:: 3.2
424
Georg Brandlcbc79c72010-12-04 16:21:42 +0000425.. pdbcommand:: display [expression]
426
427 Display the value of the expression if it changed, each time execution stops
428 in the current frame.
429
430 Without expression, list all display expressions for the current frame.
431
432 .. versionadded:: 3.2
433
434.. pdbcommand:: undisplay [expression]
435
436 Do not display the expression any more in the current frame. Without
437 expression, clear all display expressions for the current frame.
438
439 .. versionadded:: 3.2
440
Georg Brandl1acb7462010-12-04 11:20:26 +0000441.. pdbcommand:: interact
442
443 Start an interative interpreter (using the :mod:`code` module) whose global
444 namespace contains all the (global and local) names found in the current
445 scope.
446
447 .. versionadded:: 3.2
448
Georg Brandl02053ee2010-07-18 10:11:03 +0000449.. _debugger-aliases:
450
451.. pdbcommand:: alias [name [command]]
452
453 Create an alias called *name* that executes *command*. The command must
454 *not* be enclosed in quotes. Replaceable parameters can be indicated by
455 ``%1``, ``%2``, and so on, while ``%*`` is replaced by all the parameters.
456 If no command is given, the current alias for *name* is shown. If no
457 arguments are given, all aliases are listed.
458
459 Aliases may be nested and can contain anything that can be legally typed at
460 the pdb prompt. Note that internal pdb commands *can* be overridden by
461 aliases. Such a command is then hidden until the alias is removed. Aliasing
462 is recursively applied to the first word of the command line; all other words
463 in the line are left alone.
Georg Brandl116aa622007-08-15 14:28:22 +0000464
465 As an example, here are two useful aliases (especially when placed in the
466 :file:`.pdbrc` file)::
467
Georg Brandle0230912010-07-30 08:29:39 +0000468 # Print instance variables (usage "pi classInst")
Georg Brandlc9879242007-09-04 07:07:56 +0000469 alias pi for k in %1.__dict__.keys(): print("%1.",k,"=",%1.__dict__[k])
Georg Brandle0230912010-07-30 08:29:39 +0000470 # Print instance variables in self
Georg Brandl116aa622007-08-15 14:28:22 +0000471 alias ps pi self
472
Georg Brandl02053ee2010-07-18 10:11:03 +0000473.. pdbcommand:: unalias name
Georg Brandl116aa622007-08-15 14:28:22 +0000474
Georg Brandl02053ee2010-07-18 10:11:03 +0000475 Delete the specified alias.
476
477.. pdbcommand:: ! statement
478
Georg Brandl116aa622007-08-15 14:28:22 +0000479 Execute the (one-line) *statement* in the context of the current stack frame.
480 The exclamation point can be omitted unless the first word of the statement
Georg Brandl02053ee2010-07-18 10:11:03 +0000481 resembles a debugger command. To set a global variable, you can prefix the
482 assignment command with a :keyword:`global` statement on the same line,
483 e.g.::
Georg Brandl116aa622007-08-15 14:28:22 +0000484
485 (Pdb) global list_options; list_options = ['-l']
486 (Pdb)
487
Georg Brandl02053ee2010-07-18 10:11:03 +0000488.. pdbcommand:: run [args ...]
489 restart [args ...]
Georg Brandl116aa622007-08-15 14:28:22 +0000490
Georg Brandl02053ee2010-07-18 10:11:03 +0000491 Restart the debugged Python program. If an argument is supplied, it is split
492 with :mod:`shlex` and the result is used as the new :data:`sys.argv`.
493 History, breakpoints, actions and debugger options are preserved.
494 :pdbcmd:`restart` is an alias for :pdbcmd:`run`.
495
496.. pdbcommand:: q(uit)
497
498 Quit from the debugger. The program being executed is aborted.
Georg Brandl243ad662009-05-05 09:00:19 +0000499
500
501.. rubric:: Footnotes
502
503.. [1] Whether a frame is considered to originate in a certain module
504 is determined by the ``__name__`` in the frame globals.