(self, data: str)
| 271 | raise UnsupportedOperation("cannot truncate stdin") |
| 272 | |
| 273 | def write(self, data: str) -> int: |
| 274 | raise UnsupportedOperation("cannot write to stdin") |
| 275 | |
| 276 | def writelines(self, lines: Iterable[str]) -> None: |
| 277 | raise UnsupportedOperation("Cannot write to stdin") |
no outgoing calls