(self)
| 279 | ) |
| 280 | |
| 281 | def is_cseq(self) -> bool: |
| 282 | return bool( |
| 283 | os.path.commonprefix(self.matches)[len(self.current_word) :] |
| 284 | ) |
| 285 | |
| 286 | def substitute_cseq(self) -> tuple[int, str]: |
| 287 | """Returns a new line by substituting a common sequence in, and update |
no outgoing calls