(self, title: str, sep: str = "=", **kw: bool)
| 566 | self._tw.sep(sep, title, fullwidth, **markup) |
| 567 | |
| 568 | def section(self, title: str, sep: str = "=", **kw: bool) -> None: |
| 569 | self._tw.sep(sep, title, **kw) |
| 570 | |
| 571 | def line(self, msg: str, **kw: bool) -> None: |
| 572 | self._tw.line(msg, **kw) |