(self, *args)
| 294 | return dir(self.__class__) |
| 295 | |
| 296 | def complete_help(self, *args): |
| 297 | commands = set(self.completenames(*args)) |
| 298 | topics = set(a[5:] for a in self.get_names() |
| 299 | if a.startswith('help_' + args[0])) |
| 300 | return list(commands | topics) |
| 301 | |
| 302 | def do_help(self, arg): |
| 303 | 'List available commands with "help" or detailed help with "help cmd".' |
nothing calls this directly
no test coverage detected