Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 1 | :mod:`bdb` --- Debugger framework |
| 2 | ================================= |
| 3 | |
| 4 | .. module:: bdb |
| 5 | :synopsis: Debugger framework. |
| 6 | |
Raymond Hettinger | a199368 | 2011-01-27 01:20:32 +0000 | [diff] [blame] | 7 | **Source code:** :source:`Lib/bdb.py` |
| 8 | |
| 9 | -------------- |
| 10 | |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 11 | The :mod:`bdb` module handles basic debugger functions, like setting breakpoints |
| 12 | or managing execution via the debugger. |
| 13 | |
| 14 | The following exception is defined: |
| 15 | |
| 16 | .. exception:: BdbQuit |
| 17 | |
| 18 | Exception raised by the :class:`Bdb` class for quitting the debugger. |
| 19 | |
| 20 | |
| 21 | The :mod:`bdb` module also defines two classes: |
| 22 | |
Georg Brandl | b868a66 | 2009-04-02 02:56:10 +0000 | [diff] [blame] | 23 | .. class:: Breakpoint(self, file, line, temporary=0, cond=None, funcname=None) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 24 | |
| 25 | This class implements temporary breakpoints, ignore counts, disabling and |
| 26 | (re-)enabling, and conditionals. |
| 27 | |
| 28 | Breakpoints are indexed by number through a list called :attr:`bpbynumber` |
| 29 | and by ``(file, line)`` pairs through :attr:`bplist`. The former points to a |
| 30 | single instance of class :class:`Breakpoint`. The latter points to a list of |
| 31 | such instances since there may be more than one breakpoint per line. |
| 32 | |
| 33 | When creating a breakpoint, its associated filename should be in canonical |
| 34 | form. If a *funcname* is defined, a breakpoint hit will be counted when the |
| 35 | first line of that function is executed. A conditional breakpoint always |
| 36 | counts a hit. |
| 37 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 38 | :class:`Breakpoint` instances have the following methods: |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 39 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 40 | .. method:: deleteMe() |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 41 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 42 | Delete the breakpoint from the list associated to a file/line. If it is |
| 43 | the last breakpoint in that position, it also deletes the entry for the |
| 44 | file/line. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 45 | |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 46 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 47 | .. method:: enable() |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 48 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 49 | Mark the breakpoint as enabled. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 50 | |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 51 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 52 | .. method:: disable() |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 53 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 54 | Mark the breakpoint as disabled. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 55 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 56 | |
Georg Brandl | d2fd4ca | 2010-07-30 15:01:23 +0000 | [diff] [blame] | 57 | .. method:: bpformat() |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 58 | |
Georg Brandl | d2fd4ca | 2010-07-30 15:01:23 +0000 | [diff] [blame] | 59 | Return a string with all the information about the breakpoint, nicely |
| 60 | formatted: |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 61 | |
| 62 | * The breakpoint number. |
| 63 | * If it is temporary or not. |
| 64 | * Its file,line position. |
| 65 | * The condition that causes a break. |
| 66 | * If it must be ignored the next N times. |
| 67 | * The breakpoint hit count. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 68 | |
Georg Brandl | d2fd4ca | 2010-07-30 15:01:23 +0000 | [diff] [blame] | 69 | .. versionadded:: 3.2 |
| 70 | |
| 71 | .. method:: bpprint(out=None) |
| 72 | |
| 73 | Print the output of :meth:`bpformat` to the file *out*, or if it is |
| 74 | ``None``, to standard output. |
| 75 | |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 76 | |
Benjamin Peterson | a0dfa82 | 2009-11-13 02:25:08 +0000 | [diff] [blame] | 77 | .. class:: Bdb(skip=None) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 78 | |
Benjamin Peterson | a0dfa82 | 2009-11-13 02:25:08 +0000 | [diff] [blame] | 79 | The :class:`Bdb` class acts as a generic Python debugger base class. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 80 | |
| 81 | This class takes care of the details of the trace facility; a derived class |
| 82 | should implement user interaction. The standard debugger class |
| 83 | (:class:`pdb.Pdb`) is an example. |
| 84 | |
Benjamin Peterson | a0dfa82 | 2009-11-13 02:25:08 +0000 | [diff] [blame] | 85 | The *skip* argument, if given, must be an iterable of glob-style |
| 86 | module name patterns. The debugger will not step into frames that |
| 87 | originate in a module that matches one of these patterns. Whether a |
| 88 | frame is considered to originate in a certain module is determined |
| 89 | by the ``__name__`` in the frame globals. |
| 90 | |
Ezio Melotti | 83fc6dd | 2010-01-27 22:44:03 +0000 | [diff] [blame] | 91 | .. versionadded:: 3.1 |
Benjamin Peterson | a0dfa82 | 2009-11-13 02:25:08 +0000 | [diff] [blame] | 92 | The *skip* argument. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 93 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 94 | The following methods of :class:`Bdb` normally don't need to be overridden. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 95 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 96 | .. method:: canonic(filename) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 97 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 98 | Auxiliary method for getting a filename in a canonical form, that is, as a |
| 99 | case-normalized (on case-insensitive filesystems) absolute path, stripped |
| 100 | of surrounding angle brackets. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 101 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 102 | .. method:: reset() |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 103 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 104 | Set the :attr:`botframe`, :attr:`stopframe`, :attr:`returnframe` and |
| 105 | :attr:`quitting` attributes with values ready to start debugging. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 106 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 107 | .. method:: trace_dispatch(frame, event, arg) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 108 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 109 | This function is installed as the trace function of debugged frames. Its |
| 110 | return value is the new trace function (in most cases, that is, itself). |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 111 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 112 | The default implementation decides how to dispatch a frame, depending on |
| 113 | the type of event (passed as a string) that is about to be executed. |
| 114 | *event* can be one of the following: |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 115 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 116 | * ``"line"``: A new line of code is going to be executed. |
| 117 | * ``"call"``: A function is about to be called, or another code block |
| 118 | entered. |
| 119 | * ``"return"``: A function or other code block is about to return. |
| 120 | * ``"exception"``: An exception has occurred. |
| 121 | * ``"c_call"``: A C function is about to be called. |
| 122 | * ``"c_return"``: A C function has returned. |
Georg Brandl | 7cb1319 | 2010-08-03 12:06:29 +0000 | [diff] [blame] | 123 | * ``"c_exception"``: A C function has raised an exception. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 124 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 125 | For the Python events, specialized functions (see below) are called. For |
| 126 | the C events, no action is taken. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 127 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 128 | The *arg* parameter depends on the previous event. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 129 | |
Benjamin Peterson | 4469d0c | 2008-11-30 22:46:23 +0000 | [diff] [blame] | 130 | See the documentation for :func:`sys.settrace` for more information on the |
| 131 | trace function. For more information on code and frame objects, refer to |
| 132 | :ref:`types`. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 133 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 134 | .. method:: dispatch_line(frame) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 135 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 136 | If the debugger should stop on the current line, invoke the |
| 137 | :meth:`user_line` method (which should be overridden in subclasses). |
| 138 | Raise a :exc:`BdbQuit` exception if the :attr:`Bdb.quitting` flag is set |
| 139 | (which can be set from :meth:`user_line`). Return a reference to the |
| 140 | :meth:`trace_dispatch` method for further tracing in that scope. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 141 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 142 | .. method:: dispatch_call(frame, arg) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 143 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 144 | If the debugger should stop on this function call, invoke the |
| 145 | :meth:`user_call` method (which should be overridden in subclasses). |
| 146 | Raise a :exc:`BdbQuit` exception if the :attr:`Bdb.quitting` flag is set |
| 147 | (which can be set from :meth:`user_call`). Return a reference to the |
| 148 | :meth:`trace_dispatch` method for further tracing in that scope. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 149 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 150 | .. method:: dispatch_return(frame, arg) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 151 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 152 | If the debugger should stop on this function return, invoke the |
| 153 | :meth:`user_return` method (which should be overridden in subclasses). |
| 154 | Raise a :exc:`BdbQuit` exception if the :attr:`Bdb.quitting` flag is set |
| 155 | (which can be set from :meth:`user_return`). Return a reference to the |
| 156 | :meth:`trace_dispatch` method for further tracing in that scope. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 157 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 158 | .. method:: dispatch_exception(frame, arg) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 159 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 160 | If the debugger should stop at this exception, invokes the |
| 161 | :meth:`user_exception` method (which should be overridden in subclasses). |
| 162 | Raise a :exc:`BdbQuit` exception if the :attr:`Bdb.quitting` flag is set |
| 163 | (which can be set from :meth:`user_exception`). Return a reference to the |
| 164 | :meth:`trace_dispatch` method for further tracing in that scope. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 165 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 166 | Normally derived classes don't override the following methods, but they may |
| 167 | if they want to redefine the definition of stopping and breakpoints. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 168 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 169 | .. method:: stop_here(frame) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 170 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 171 | This method checks if the *frame* is somewhere below :attr:`botframe` in |
| 172 | the call stack. :attr:`botframe` is the frame in which debugging started. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 173 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 174 | .. method:: break_here(frame) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 175 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 176 | This method checks if there is a breakpoint in the filename and line |
| 177 | belonging to *frame* or, at least, in the current function. If the |
| 178 | breakpoint is a temporary one, this method deletes it. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 179 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 180 | .. method:: break_anywhere(frame) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 181 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 182 | This method checks if there is a breakpoint in the filename of the current |
| 183 | frame. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 184 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 185 | Derived classes should override these methods to gain control over debugger |
| 186 | operation. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 187 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 188 | .. method:: user_call(frame, argument_list) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 189 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 190 | This method is called from :meth:`dispatch_call` when there is the |
| 191 | possibility that a break might be necessary anywhere inside the called |
| 192 | function. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 193 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 194 | .. method:: user_line(frame) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 195 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 196 | This method is called from :meth:`dispatch_line` when either |
| 197 | :meth:`stop_here` or :meth:`break_here` yields True. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 198 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 199 | .. method:: user_return(frame, return_value) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 200 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 201 | This method is called from :meth:`dispatch_return` when :meth:`stop_here` |
| 202 | yields True. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 203 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 204 | .. method:: user_exception(frame, exc_info) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 205 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 206 | This method is called from :meth:`dispatch_exception` when |
| 207 | :meth:`stop_here` yields True. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 208 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 209 | .. method:: do_clear(arg) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 210 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 211 | Handle how a breakpoint must be removed when it is a temporary one. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 212 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 213 | This method must be implemented by derived classes. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 214 | |
| 215 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 216 | Derived classes and clients can call the following methods to affect the |
| 217 | stepping state. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 218 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 219 | .. method:: set_step() |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 220 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 221 | Stop after one line of code. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 222 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 223 | .. method:: set_next(frame) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 224 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 225 | Stop on the next line in or below the given frame. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 226 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 227 | .. method:: set_return(frame) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 228 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 229 | Stop when returning from the given frame. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 230 | |
Alexandre Vassalotti | 5f8ced2 | 2008-05-16 00:03:33 +0000 | [diff] [blame] | 231 | .. method:: set_until(frame) |
| 232 | |
| 233 | Stop when the line with the line no greater than the current one is |
| 234 | reached or when returning from current frame |
| 235 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 236 | .. method:: set_trace([frame]) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 237 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 238 | Start debugging from *frame*. If *frame* is not specified, debugging |
| 239 | starts from caller's frame. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 240 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 241 | .. method:: set_continue() |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 242 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 243 | Stop only at breakpoints or when finished. If there are no breakpoints, |
| 244 | set the system trace function to None. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 245 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 246 | .. method:: set_quit() |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 247 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 248 | Set the :attr:`quitting` attribute to True. This raises :exc:`BdbQuit` in |
| 249 | the next call to one of the :meth:`dispatch_\*` methods. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 250 | |
| 251 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 252 | Derived classes and clients can call the following methods to manipulate |
| 253 | breakpoints. These methods return a string containing an error message if |
| 254 | something went wrong, or ``None`` if all is well. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 255 | |
Georg Brandl | b868a66 | 2009-04-02 02:56:10 +0000 | [diff] [blame] | 256 | .. method:: set_break(filename, lineno, temporary=0, cond, funcname) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 257 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 258 | Set a new breakpoint. If the *lineno* line doesn't exist for the |
| 259 | *filename* passed as argument, return an error message. The *filename* |
| 260 | should be in canonical form, as described in the :meth:`canonic` method. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 261 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 262 | .. method:: clear_break(filename, lineno) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 263 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 264 | Delete the breakpoints in *filename* and *lineno*. If none were set, an |
| 265 | error message is returned. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 266 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 267 | .. method:: clear_bpbynumber(arg) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 268 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 269 | Delete the breakpoint which has the index *arg* in the |
| 270 | :attr:`Breakpoint.bpbynumber`. If *arg* is not numeric or out of range, |
| 271 | return an error message. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 272 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 273 | .. method:: clear_all_file_breaks(filename) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 274 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 275 | Delete all breakpoints in *filename*. If none were set, an error message |
| 276 | is returned. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 277 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 278 | .. method:: clear_all_breaks() |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 279 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 280 | Delete all existing breakpoints. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 281 | |
Georg Brandl | 7410dd1 | 2010-07-30 12:01:20 +0000 | [diff] [blame] | 282 | .. method:: get_bpbynumber(arg) |
| 283 | |
| 284 | Return a breakpoint specified by the given number. If *arg* is a string, |
| 285 | it will be converted to a number. If *arg* is a non-numeric string, if |
| 286 | the given breakpoint never existed or has been deleted, a |
| 287 | :exc:`ValueError` is raised. |
| 288 | |
| 289 | .. versionadded:: 3.2 |
| 290 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 291 | .. method:: get_break(filename, lineno) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 292 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 293 | Check if there is a breakpoint for *lineno* of *filename*. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 294 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 295 | .. method:: get_breaks(filename, lineno) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 296 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 297 | Return all breakpoints for *lineno* in *filename*, or an empty list if |
| 298 | none are set. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 299 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 300 | .. method:: get_file_breaks(filename) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 301 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 302 | Return all breakpoints in *filename*, or an empty list if none are set. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 303 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 304 | .. method:: get_all_breaks() |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 305 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 306 | Return all breakpoints that are set. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 307 | |
| 308 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 309 | Derived classes and clients can call the following methods to get a data |
| 310 | structure representing a stack trace. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 311 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 312 | .. method:: get_stack(f, t) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 313 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 314 | Get a list of records for a frame and all higher (calling) and lower |
| 315 | frames, and the size of the higher part. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 316 | |
Georg Brandl | b868a66 | 2009-04-02 02:56:10 +0000 | [diff] [blame] | 317 | .. method:: format_stack_entry(frame_lineno, lprefix=': ') |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 318 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 319 | Return a string with information about a stack entry, identified by a |
| 320 | ``(frame, lineno)`` tuple: |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 321 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 322 | * The canonical form of the filename which contains the frame. |
| 323 | * The function name, or ``"<lambda>"``. |
| 324 | * The input arguments. |
| 325 | * The return value. |
| 326 | * The line of code (if it exists). |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 327 | |
| 328 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 329 | The following two methods can be called by clients to use a debugger to debug |
| 330 | a :term:`statement`, given as a string. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 331 | |
Georg Brandl | b868a66 | 2009-04-02 02:56:10 +0000 | [diff] [blame] | 332 | .. method:: run(cmd, globals=None, locals=None) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 333 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 334 | Debug a statement executed via the :func:`exec` function. *globals* |
| 335 | defaults to :attr:`__main__.__dict__`, *locals* defaults to *globals*. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 336 | |
Georg Brandl | b868a66 | 2009-04-02 02:56:10 +0000 | [diff] [blame] | 337 | .. method:: runeval(expr, globals=None, locals=None) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 338 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 339 | Debug an expression executed via the :func:`eval` function. *globals* and |
| 340 | *locals* have the same meaning as in :meth:`run`. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 341 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 342 | .. method:: runctx(cmd, globals, locals) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 343 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 344 | For backwards compatibility. Calls the :meth:`run` method. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 345 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 346 | .. method:: runcall(func, *args, **kwds) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 347 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 348 | Debug a single function call, and return its result. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 349 | |
| 350 | |
| 351 | Finally, the module defines the following functions: |
| 352 | |
| 353 | .. function:: checkfuncname(b, frame) |
| 354 | |
| 355 | Check whether we should break here, depending on the way the breakpoint *b* |
| 356 | was set. |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 357 | |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 358 | If it was set via line number, it checks if ``b.line`` is the same as the one |
| 359 | in the frame also passed as argument. If the breakpoint was set via function |
| 360 | name, we have to check we are in the right frame (the right function) and if |
| 361 | we are in its first executable line. |
| 362 | |
| 363 | .. function:: effective(file, line, frame) |
| 364 | |
| 365 | Determine if there is an effective (active) breakpoint at this line of code. |
Georg Brandl | f51a6c7 | 2010-11-26 12:05:48 +0000 | [diff] [blame] | 366 | Return a tuple of the breakpoint and a boolean that indicates if it is ok |
| 367 | to delete a temporary breakpoint. Return ``(None, None)`` if there is no |
| 368 | matching breakpoint. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 369 | |
| 370 | .. function:: set_trace() |
| 371 | |
Georg Brandl | f51a6c7 | 2010-11-26 12:05:48 +0000 | [diff] [blame] | 372 | Start debugging with a :class:`Bdb` instance from caller's frame. |