Add missing seekable() class method to BigFile plugin
This commit is contained in:
parent
f3a839f422
commit
a657afcd47
1 changed files with 3 additions and 0 deletions
|
@ -597,6 +597,9 @@ class BigFile(object):
|
||||||
whence = 0
|
whence = 0
|
||||||
return self.f.seek(pos, whence)
|
return self.f.seek(pos, whence)
|
||||||
|
|
||||||
|
def seekable(self):
|
||||||
|
return self.f.seekable()
|
||||||
|
|
||||||
def tell(self):
|
def tell(self):
|
||||||
return self.f.tell()
|
return self.f.tell()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue