(self)
| 2041 | class PyUp(gdb.Command): |
| 2042 | 'Select and print all python stack frame in the same eval loop starting from the one that called this one (if any)' |
| 2043 | def __init__(self): |
| 2044 | gdb.Command.__init__ (self, |
| 2045 | "py-up", |
| 2046 | gdb.COMMAND_STACK, |
| 2047 | gdb.COMPLETE_NONE) |
| 2048 | |
| 2049 | |
| 2050 | def invoke(self, args, from_tty): |