(self)
| 262 | raise UnsupportedOperation("redirected stdin is pseudofile, has no seek(int)") |
| 263 | |
| 264 | def seekable(self) -> bool: |
| 265 | return False |
| 266 | |
| 267 | def tell(self) -> int: |
| 268 | raise UnsupportedOperation("redirected stdin is pseudofile, has no tell()") |
no outgoing calls