equal
deleted
inserted
replaced
303 """ returns all the heads """ |
303 """ returns all the heads """ |
304 return self._entries.itervalues() |
304 return self._entries.itervalues() |
305 |
305 |
306 def copy(self): |
306 def copy(self): |
307 """return an deep copy of the branchcache object""" |
307 """return an deep copy of the branchcache object""" |
308 return branchcache( |
308 return type(self)( |
309 self._entries, self.tipnode, self.tiprev, self.filteredhash, |
309 self._entries, self.tipnode, self.tiprev, self.filteredhash, |
310 self._closednodes) |
310 self._closednodes) |
311 |
311 |
312 def write(self, repo): |
312 def write(self, repo): |
313 try: |
313 try: |