(self)
| 2119 | class PyBacktrace(gdb.Command): |
| 2120 | 'Display the current python frame and all the frames within its call stack (if any)' |
| 2121 | def __init__(self): |
| 2122 | gdb.Command.__init__ (self, |
| 2123 | "py-bt", |
| 2124 | gdb.COMMAND_STACK, |
| 2125 | gdb.COMPLETE_NONE) |
| 2126 | |
| 2127 | def invoke(self, args, from_tty): |
| 2128 | print_traceback_helper(full_info=False) |