(self, prefix: str)
| 96 | out.line(s) |
| 97 | |
| 98 | def get_sections(self, prefix: str) -> Iterator[tuple[str, str]]: |
| 99 | for name, content in self.sections: |
| 100 | if name.startswith(prefix): |
| 101 | yield prefix, content |
| 102 | |
| 103 | @property |
| 104 | def longreprtext(self) -> str: |
no outgoing calls