(self, offset: int, whence: int = 0)
| 259 | return False |
| 260 | |
| 261 | def seek(self, offset: int, whence: int = 0) -> int: |
| 262 | raise UnsupportedOperation("redirected stdin is pseudofile, has no seek(int)") |
| 263 | |
| 264 | def seekable(self) -> bool: |
| 265 | return False |
no outgoing calls