(self)
| 356 | raise NotImplementedError(f"PartialFileIO does not support '{name}'.") |
| 357 | |
| 358 | def tell(self) -> int: |
| 359 | return self._file.tell() |
| 360 | |
| 361 | def seek(self, __offset: int, __whence: int = SEEK_SET) -> int: |
| 362 | """Seek to a position in the file, but never beyond size_limit.""" |
no outgoing calls