(self, lines: Iterable[str])
| 274 | raise UnsupportedOperation("cannot write to stdin") |
| 275 | |
| 276 | def writelines(self, lines: Iterable[str]) -> None: |
| 277 | raise UnsupportedOperation("Cannot write to stdin") |
| 278 | |
| 279 | def writable(self) -> bool: |
| 280 | return False |
no outgoing calls