mercurial/localrepo.py
changeset 35309 d13526333835
parent 35308 137a08d82232
child 35492 3ad582b2895c
equal deleted inserted replaced
35308:137a08d82232 35309:d13526333835
   686 
   686 
   687     @property
   687     @property
   688     def _activebookmark(self):
   688     def _activebookmark(self):
   689         return self._bookmarks.active
   689         return self._bookmarks.active
   690 
   690 
   691     # _phaserevs and _phasesets depend on changelog. what we need is to
   691     # _phasesets depend on changelog. what we need is to call
   692     # call _phasecache.invalidate() if '00changelog.i' was changed, but it
   692     # _phasecache.invalidate() if '00changelog.i' was changed, but it
   693     # can't be easily expressed in filecache mechanism.
   693     # can't be easily expressed in filecache mechanism.
   694     @storecache('phaseroots', '00changelog.i')
   694     @storecache('phaseroots', '00changelog.i')
   695     def _phasecache(self):
   695     def _phasecache(self):
   696         return phases.phasecache(self, self._phasedefaults)
   696         return phases.phasecache(self, self._phasedefaults)
   697 
   697