mercurial/localrepo.py
branchstable
changeset 15987 b5f6a63b4ded
parent 15986 ba959f6e10f8
child 15988 827e0126738d
equal deleted inserted replaced
15986:ba959f6e10f8 15987:b5f6a63b4ded
   174         return bookmarks.readcurrent(self)
   174         return bookmarks.readcurrent(self)
   175 
   175 
   176     def _writebookmarks(self, marks):
   176     def _writebookmarks(self, marks):
   177       bookmarks.write(self)
   177       bookmarks.write(self)
   178 
   178 
   179     @filecache('phaseroots')
   179     @filecache('phaseroots', True)
   180     def _phaseroots(self):
   180     def _phaseroots(self):
   181         self._dirtyphases = False
   181         self._dirtyphases = False
   182         phaseroots = phases.readroots(self)
   182         phaseroots = phases.readroots(self)
   183         phases.filterunknown(self, phaseroots)
   183         phases.filterunknown(self, phaseroots)
   184         return phaseroots
   184         return phaseroots