(self)
| 2105 | class PyBacktraceFull(gdb.Command): |
| 2106 | 'Display the current python frame and all the frames within its call stack (if any)' |
| 2107 | def __init__(self): |
| 2108 | gdb.Command.__init__ (self, |
| 2109 | "py-bt-full", |
| 2110 | gdb.COMMAND_STACK, |
| 2111 | gdb.COMPLETE_NONE) |
| 2112 | |
| 2113 | |
| 2114 | def invoke(self, args, from_tty): |