##// END OF EJS Templates
bundle: make unbundle object seekable...
Matt Mackall -
r12330:e527b863 default
parent child Browse files
Show More
@@ -146,6 +146,10 b' class unbundle10(object):'
146 return self._type != 'UN'
146 return self._type != 'UN'
147 def read(self, l):
147 def read(self, l):
148 return self._stream.read(l)
148 return self._stream.read(l)
149 def seek(self, pos):
150 return self._stream.seek(pos)
151 def tell(self):
152 return self._stream.tell(pos)
149
153
150 class headerlessfixup(object):
154 class headerlessfixup(object):
151 def __init__(self, fh, h):
155 def __init__(self, fh, h):
General Comments 0
You need to be logged in to leave comments. Login now