Get the internal contents as a str.
(self)
| 432 | self.inner_stream.write(s) |
| 433 | |
| 434 | def getvalue(self) -> str: |
| 435 | """Get the internal contents as a str.""" |
| 436 | return self.buffer.byte_buf.decode(encoding=self.encoding, errors=self.errors) |
| 437 | |
| 438 | def getbytes(self) -> bytes: |
| 439 | """Get the internal contents as bytes.""" |
no outgoing calls