(self, name: str, content: str, sep: str = "-")
| 988 | self.sections: List[Tuple[str, str, str]] = [] |
| 989 | |
| 990 | def addsection(self, name: str, content: str, sep: str = "-") -> None: |
| 991 | self.sections.append((name, content, sep)) |
| 992 | |
| 993 | def toterminal(self, tw: TerminalWriter) -> None: |
| 994 | for name, content, sep in self.sections: |