comparison mercurial/changegroup.py @ 12332:680fe77ab5b8

bundlerepo: use bundle objects everywhere
author Matt Mackall <mpm@selenic.com>
date Fri, 17 Sep 2010 19:24:29 -0500
parents e527b8635881
children 44c7dfc2f6a3
comparison
equal deleted inserted replaced
12331:40935b59518b 12332:680fe77ab5b8
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): 149 def seek(self, pos):
150 return self._stream.seek(pos) 150 return self._stream.seek(pos)
151 def tell(self): 151 def tell(self):
152 return self._stream.tell(pos) 152 return self._stream.tell()
153 153
154 class headerlessfixup(object): 154 class headerlessfixup(object):
155 def __init__(self, fh, h): 155 def __init__(self, fh, h):
156 self._h = h 156 self._h = h
157 self._fh = fh 157 self._fh = fh