160 <td>Public method to perform a step out of the current call.</td> |
160 <td>Public method to perform a step out of the current call.</td> |
161 </tr><tr> |
161 </tr><tr> |
162 <td><a href="#DebugBase.stop_here">stop_here</a></td> |
162 <td><a href="#DebugBase.stop_here">stop_here</a></td> |
163 <td>Public method reimplemented to filter out debugger files.</td> |
163 <td>Public method reimplemented to filter out debugger files.</td> |
164 </tr><tr> |
164 </tr><tr> |
|
165 <td><a href="#DebugBase.storeFrameLocals">storeFrameLocals</a></td> |
|
166 <td>Public method to store the locals into the frame, so an access to frame.f_locals returns the last data.</td> |
|
167 </tr><tr> |
165 <td><a href="#DebugBase.trace_dispatch">trace_dispatch</a></td> |
168 <td><a href="#DebugBase.trace_dispatch">trace_dispatch</a></td> |
166 <td>Public method reimplemented from bdb.py to do some special things.</td> |
169 <td>Public method reimplemented from bdb.py to do some special things.</td> |
167 </tr><tr> |
170 </tr><tr> |
168 <td><a href="#DebugBase.user_exception">user_exception</a></td> |
171 <td><a href="#DebugBase.user_exception">user_exception</a></td> |
169 <td>Public method reimplemented to report an exception to the debug server.</td> |
172 <td>Public method reimplemented to report an exception to the debug server.</td> |
647 </dl><dl> |
650 </dl><dl> |
648 <dt>Returns:</dt> |
651 <dt>Returns:</dt> |
649 <dd> |
652 <dd> |
650 flag indicating whether the debugger should stop here |
653 flag indicating whether the debugger should stop here |
651 </dd> |
654 </dd> |
|
655 </dl><a NAME="DebugBase.storeFrameLocals" ID="DebugBase.storeFrameLocals"></a> |
|
656 <h4>DebugBase.storeFrameLocals</h4> |
|
657 <b>storeFrameLocals</b>(<i>frmnr=0</i>) |
|
658 <p> |
|
659 Public method to store the locals into the frame, so an access to |
|
660 frame.f_locals returns the last data. |
|
661 </p><dl> |
|
662 <dt><i>frmnr=</i></dt> |
|
663 <dd> |
|
664 distance of frame to store locals dictionary to. 0 is |
|
665 the current frame (int) |
|
666 </dd> |
652 </dl><a NAME="DebugBase.trace_dispatch" ID="DebugBase.trace_dispatch"></a> |
667 </dl><a NAME="DebugBase.trace_dispatch" ID="DebugBase.trace_dispatch"></a> |
653 <h4>DebugBase.trace_dispatch</h4> |
668 <h4>DebugBase.trace_dispatch</h4> |
654 <b>trace_dispatch</b>(<i>frame, event, arg</i>) |
669 <b>trace_dispatch</b>(<i>frame, event, arg</i>) |
655 <p> |
670 <p> |
656 Public method reimplemented from bdb.py to do some special things. |
671 Public method reimplemented from bdb.py to do some special things. |