(self, content: str, *, flush: bool = False, **markup: bool)
| 523 | self._tw.write(wrapped, flush=flush, **markup) |
| 524 | |
| 525 | def write(self, content: str, *, flush: bool = False, **markup: bool) -> None: |
| 526 | self._tw.write(content, flush=flush, **markup) |
| 527 | |
| 528 | def write_raw(self, content: str, *, flush: bool = False) -> None: |
| 529 | self._tw.write_raw(content, flush=flush) |
no outgoing calls