mercurial/unionrepo.py
changeset 52065 4675ab746a02
parent 51871 8315175f678d
child 52643 5cc8deb96b48
equal deleted inserted replaced
52064:c392d57e8a06 52065:4675ab746a02
   211         unionrevlog.__init__(self, opener, self.radix, changelog2, linkmapper)
   211         unionrevlog.__init__(self, opener, self.radix, changelog2, linkmapper)
   212 
   212 
   213 
   213 
   214 class unionmanifest(unionrevlog, manifest.manifestrevlog):
   214 class unionmanifest(unionrevlog, manifest.manifestrevlog):
   215     repotiprev: int
   215     repotiprev: int
   216     revlog2: manifest.ManifestRevlog
   216     revlog2: manifest.manifestrevlog
   217 
   217 
   218     def __init__(self, nodeconstants, opener, opener2, linkmapper):
   218     def __init__(self, nodeconstants, opener, opener2, linkmapper):
   219         # XXX manifestrevlog is not actually a revlog , so mixing it with
   219         # XXX manifestrevlog is not actually a revlog , so mixing it with
   220         # bundlerevlog is not a good idea.
   220         # bundlerevlog is not a good idea.
   221         manifest.manifestrevlog.__init__(self, nodeconstants, opener)
   221         manifest.manifestrevlog.__init__(self, nodeconstants, opener)