(
self,
sep: str,
title: str | None = None,
fullwidth: int | None = None,
**markup: bool,
)
| 556 | self._tw.write(class="st">"\r" + line + fill, **markup) |
| 557 | |
| 558 | def write_sep( |
| 559 | self, |
| 560 | sep: str, |
| 561 | title: str | None = None, |
| 562 | fullwidth: int | None = None, |
| 563 | **markup: bool, |
| 564 | ) -> None: |
| 565 | self.ensure_newline() |
| 566 | self._tw.sep(sep, title, fullwidth, **markup) |
| 567 | |
| 568 | def section(self, title: str, sep: str = class="st">"=", **kw: bool) -> None: |
| 569 | self._tw.sep(sep, title, **kw) |
no test coverage detected