(self)
| 2053 | class PyDown(gdb.Command): |
| 2054 | 'Select and print all python stack frame in the same eval loop starting from the one called this one (if any)' |
| 2055 | def __init__(self): |
| 2056 | gdb.Command.__init__ (self, |
| 2057 | "py-down", |
| 2058 | gdb.COMMAND_STACK, |
| 2059 | gdb.COMPLETE_NONE) |
| 2060 | |
| 2061 | |
| 2062 | def invoke(self, args, from_tty): |