(self)
| 265 | return False |
| 266 | |
| 267 | def tell(self) -> int: |
| 268 | raise UnsupportedOperation("redirected stdin is pseudofile, has no tell()") |
| 269 | |
| 270 | def truncate(self, size: int | None = None) -> int: |
| 271 | raise UnsupportedOperation("cannot truncate stdin") |
no outgoing calls