(self, __offset, __whence=None)
| 339 | return output |
| 340 | |
| 341 | def seek(self, __offset, __whence=None): |
| 342 | if not self.local_file: |
| 343 | self.local_file = self.getFile() |
| 344 | if __whence: |
| 345 | output = self.local_file.seek(__offset, __whence) |
| 346 | else: |
| 347 | output = self.local_file.seek(__offset) |
| 348 | return output |