Clear the internal contents.
(self)
| 460 | return result |
| 461 | |
| 462 | def clear(self) -> None: |
| 463 | """Clear the internal contents.""" |
| 464 | self.buffer.byte_buf.clear() |
| 465 | |
| 466 | def isatty(self) -> bool: |
| 467 | """StdSim only considered an interactive stream if `echo` is True and `inner_stream` is a tty.""" |
no outgoing calls