mercurial/bundle2.py
changeset 24071 184a2f6f40da
parent 24070 de32e9881698
child 24640 685639f9430d
equal deleted inserted replaced
24070:de32e9881698 24071:184a2f6f40da
   605         self.ui.debug('part header size: %i\n' % headersize)
   605         self.ui.debug('part header size: %i\n' % headersize)
   606         if headersize:
   606         if headersize:
   607             return self._readexact(headersize)
   607             return self._readexact(headersize)
   608         return None
   608         return None
   609 
   609 
       
   610     def compressed(self):
       
   611         return False
   610 
   612 
   611 class bundlepart(object):
   613 class bundlepart(object):
   612     """A bundle2 part contains application level payload
   614     """A bundle2 part contains application level payload
   613 
   615 
   614     The part `type` is used to route the part to the application level
   616     The part `type` is used to route the part to the application level