Returns the buffer contents.
(self)
| 247 | self.dedent() |
| 248 | |
| 249 | def getvalue(self) -> str: |
| 250 | """Returns the buffer contents.""" |
| 251 | return "".join(self.buffer) |
| 252 | |
| 253 | |
| 254 | def join_options(options: Sequence[str]) -> tuple[str, bool]: |
no outgoing calls