(self)
| 2166 | class PyLocals(gdb.Command): |
| 2167 | 'Look up the given python variable name, and print it' |
| 2168 | def __init__(self): |
| 2169 | gdb.Command.__init__ (self, |
| 2170 | "py-locals", |
| 2171 | gdb.COMMAND_DATA, |
| 2172 | gdb.COMPLETE_NONE) |
| 2173 | |
| 2174 | |
| 2175 | def invoke(self, args, from_tty): |