(self, names: Collection[str])
| 959 | return name |
| 960 | |
| 961 | def escaped_names(self, names: Collection[str]) -> list[str]: |
| 962 | return [self.escape_name(name) for name in names] |
| 963 | |
| 964 | def extend_special_commands(self, special_commands: list[str]) -> None: |
| 965 | # Special commands are not part of all_completions since they can only |
no test coverage detected