mercurial/localrepo.py
changeset 17205 97eff00046de
parent 17204 4feb55e6931f
child 17207 62c56c94c77e
equal deleted inserted replaced
17204:4feb55e6931f 17205:97eff00046de
    54 
    54 
    55     def lookup(self, key):
    55     def lookup(self, key):
    56         return self._repo.lookup(key)
    56         return self._repo.lookup(key)
    57 
    57 
    58     def branchmap(self):
    58     def branchmap(self):
    59         return phases.visiblebranchmap(self._repo)
    59         return discovery.visiblebranchmap(self._repo)
    60 
    60 
    61     def heads(self):
    61     def heads(self):
    62         return phases.visibleheads(self._repo)
    62         return discovery.visibleheads(self._repo)
    63 
    63 
    64     def known(self, nodes):
    64     def known(self, nodes):
    65         return self._repo.known(nodes)
    65         return self._repo.known(nodes)
    66 
    66 
    67     def getbundle(self, source, heads=None, common=None):
    67     def getbundle(self, source, heads=None, common=None):