115
118
f = self._transport.get(filename)
116
119
# gzip.GzipFile.read() requires a tell() function
117
120
# but some transports return objects that cannot seek
119
122
if getattr(f, 'tell', None) is not None:
120
123
return gzip.GzipFile(mode='rb', fileobj=f)
124
126
return gzip.GzipFile(mode='rb', fileobj=sio)