equal
deleted
inserted
replaced
728 bt = {} |
728 bt = {} |
729 for bn, heads in self.branchmap().iteritems(): |
729 for bn, heads in self.branchmap().iteritems(): |
730 bt[bn] = self._branchtip(heads) |
730 bt[bn] = self._branchtip(heads) |
731 return bt |
731 return bt |
732 |
732 |
733 @unfilteredmethod # Until we get a smarter cache management |
|
734 def _updatebranchcache(self, partial, ctxgen): |
733 def _updatebranchcache(self, partial, ctxgen): |
735 """Given a branchhead cache, partial, that may have extra nodes or be |
734 """Given a branchhead cache, partial, that may have extra nodes or be |
736 missing heads, and a generator of nodes that are at least a superset of |
735 missing heads, and a generator of nodes that are at least a superset of |
737 heads missing, this function updates partial to be correct. |
736 heads missing, this function updates partial to be correct. |
738 """ |
737 """ |