(self, where, whence=0)
| 384 | self._fileobj.write(data) |
| 385 | |
| 386 | def seek(self, where, whence=0): |
| 387 | self._open_if_needed() |
| 388 | self._fileobj.seek(where, whence) |
| 389 | |
| 390 | def tell(self): |
| 391 | if self._fileobj is None: |
nothing calls this directly
no test coverage detected