(self, manager: "CommandManager", t: type, s: str)
| 128 | return codecs.decode(match.group(0), "unicode-escape") # type: ignore |
| 129 | |
| 130 | def completion(self, manager: "CommandManager", t: type, s: str) -> Sequence[str]: |
| 131 | return [] |
| 132 | |
| 133 | def parse(self, manager: "CommandManager", t: type, s: str) -> str: |
| 134 | return self.escape_sequences.sub(self._unescape, s) |
no outgoing calls