Add a text fragment to the accumulator.
(self, text: str)
| 366 | self._texts: List[str] = [] |
| 367 | |
| 368 | def push(self, text: str) -> None: |
| 369 | """Add a text fragment to the accumulator.""" |
| 370 | self._texts.append(text) |
| 371 | |
| 372 | def pop(self) -> Iterator[str]: |
| 373 | """Generate sero-or-one str from those accumulated. |