cmd2 environment settings that are backed up when entering an interactive Python shell.
| 211 | |
| 212 | |
| 213 | class _SavedCmd2Env: |
| 214 | """cmd2 environment settings that are backed up when entering an interactive Python shell.""" |
| 215 | |
| 216 | def __init__(self) -> None: |
| 217 | self.history: list[str] = [] |
| 218 | self.completer: Callable[[str, int], str | None] | None = None |
| 219 | |
| 220 | |
| 221 | class DisabledCommand(NamedTuple): |
no outgoing calls
no test coverage detected
searching dependent graphs…