Ran once when the [cmd2.Cmd.cmdloop][] method is about to return (cmd inherited Hook Method). This method is a stub that does nothing and exists to be overridden by subclasses. See [cmd2.Cmd.register_postloop_hook][] for a more robust way to run hooks after the command loop complet
(self)
| 2853 | """ |
| 2854 | |
| 2855 | def postloop(self) -> None: |
| 2856 | """Ran once when the [cmd2.Cmd.cmdloop][] method is about to return (cmd inherited Hook Method). |
| 2857 | |
| 2858 | This method is a stub that does nothing and exists to be overridden by subclasses. |
| 2859 | |
| 2860 | See [cmd2.Cmd.register_postloop_hook][] for a more robust way to run hooks after the command loop completes. |
| 2861 | See [Hooks](../features/hooks.md) for more information. |
| 2862 | """ |
| 2863 | |
| 2864 | def parseline(self, line: str) -> tuple[str, str, str]: |
| 2865 | """Parse the line into a command name and a string containing the arguments. |
no outgoing calls
no test coverage detected