Flush the internal buffer. This is a no-op. Flushing stdin doesn't make any sense anyway.
(self)
| 212 | return True |
| 213 | |
| 214 | def flush(self) -> None: |
| 215 | """Flush the internal buffer. This is a no-op. Flushing stdin |
| 216 | doesn't make any sense anyway.""" |
| 217 | |
| 218 | def write(self, value): |
| 219 | # XXX IPython expects sys.stdin.write to exist, there will no doubt be |
no outgoing calls