mercurial/bundlerepo.py
changeset 3769 8ecc9c57d883
parent 3579 0ed2732aa393
child 3791 8643b9f90b51
equal deleted inserted replaced
3768:6ae3685be45d 3769:8ecc9c57d883
   139         raise NotImplementedError
   139         raise NotImplementedError
   140 
   140 
   141 class bundlechangelog(bundlerevlog, changelog.changelog):
   141 class bundlechangelog(bundlerevlog, changelog.changelog):
   142     def __init__(self, opener, bundlefile):
   142     def __init__(self, opener, bundlefile):
   143         changelog.changelog.__init__(self, opener)
   143         changelog.changelog.__init__(self, opener)
   144         bundlerevlog.__init__(self, opener, "00changelog.i", "00changelog.d",
   144         bundlerevlog.__init__(self, opener, self.indexfile, self.datafile,
   145                               bundlefile)
   145                               bundlefile)
   146 
   146 
   147 class bundlemanifest(bundlerevlog, manifest.manifest):
   147 class bundlemanifest(bundlerevlog, manifest.manifest):
   148     def __init__(self, opener, bundlefile, linkmapper):
   148     def __init__(self, opener, bundlefile, linkmapper):
   149         manifest.manifest.__init__(self, opener)
   149         manifest.manifest.__init__(self, opener)