Return the arguments in a list (quotes preserved).
(self)
| 219 | |
| 220 | @property |
| 221 | def arg_list(self) -> list[str]: |
| 222 | """Return the arguments in a list (quotes preserved).""" |
| 223 | return shlex_split(self.args) |
| 224 | |
| 225 | def to_dict(self) -> dict[str, Any]: |
| 226 | """Convert this Statement into a dictionary for use in persistent JSON history files.""" |
nothing calls this directly
no test coverage detected