(self, *args)
| 284 | return dir(self.__class__) |
| 285 | |
| 286 | def complete_help(self, *args): |
| 287 | commands = set(self.completenames(*args)) |
| 288 | topics = set(a[5:] for a in self.get_names() |
| 289 | if a.startswith('help_' + args[0])) |
| 290 | return list(commands | topics) |
| 291 | |
| 292 | def do_help(self, arg): |
| 293 | 'List available commands with "help" or detailed help with "help cmd".' |
nothing calls this directly
no test coverage detected