(self)
| 2132 | class PyPrint(gdb.Command): |
| 2133 | 'Look up the given python variable name, and print it' |
| 2134 | def __init__(self): |
| 2135 | gdb.Command.__init__ (self, |
| 2136 | "py-print", |
| 2137 | gdb.COMMAND_DATA, |
| 2138 | gdb.COMPLETE_NONE) |
| 2139 | |
| 2140 | |
| 2141 | def invoke(self, args, from_tty): |