Merge pull request #2546 from anoadragon453/anoa/bigfile_seekable
Add missing seekable() class method to BigFile plugin
This commit is contained in:
commit
3c7022ea9d
1 changed files with 3 additions and 0 deletions
|
@ -597,6 +597,9 @@ class BigFile(object):
|
|||
whence = 0
|
||||
return self.f.seek(pos, whence)
|
||||
|
||||
def seekable(self):
|
||||
return self.f.seekable()
|
||||
|
||||
def tell(self):
|
||||
return self.f.tell()
|
||||
|
||||
|
|
Loading…
Reference in a new issue