Call read_input with no history or tab completion.
(self, _)
| 20 | |
| 21 | @cmd2.with_category(EXAMPLE_COMMANDS) |
| 22 | def do_basic(self, _) -> None: |
| 23 | """Call read_input with no history or tab completion.""" |
| 24 | self.poutput("Tab completion and up-arrow history is off") |
| 25 | with contextlib.suppress(EOFError): |
| 26 | self.read_input("> ") |
| 27 | |
| 28 | @cmd2.with_category(EXAMPLE_COMMANDS) |
| 29 | def do_basic_with_history(self, _) -> None: |
nothing calls this directly
no test coverage detected