(self, title: str, sep: str = "=", **kw: bool)
| 451 | self._tw.sep(sep, title, fullwidth, **markup) |
| 452 | |
| 453 | def section(self, title: str, sep: str = "=", **kw: bool) -> None: |
| 454 | self._tw.sep(sep, title, **kw) |
| 455 | |
| 456 | def line(self, msg: str, **kw: bool) -> None: |
| 457 | self._tw.line(msg, **kw) |