Return an alphabetized list of names comprising the attributes of the cmd2 class instance.
(self)
| 2684 | return self.statement_parser.aliases |
| 2685 | |
| 2686 | def get_names(self) -> list[str]: |
| 2687 | """Return an alphabetized list of names comprising the attributes of the cmd2 class instance.""" |
| 2688 | return dir(self) |
| 2689 | |
| 2690 | def get_all_commands(self) -> list[str]: |
| 2691 | """Return a list of all commands.""" |
no outgoing calls
no test coverage detected