##// END OF EJS Templates
branchmap: revert c34532365b38 for Python 2.7 compatibility...
Mike Hommey -
r33737:1814ca41 stable
parent child Browse files
Show More
@@ -406,7 +406,8 b' class revbranchcache(object):'
406 406
407 407 # fast path: extract data from cache, use it if node is matching
408 408 reponode = changelog.node(rev)[:_rbcnodelen]
409 cachenode, branchidx = unpack_from(_rbcrecfmt, self._rbcrevs, rbcrevidx)
409 cachenode, branchidx = unpack_from(
410 _rbcrecfmt, util.buffer(self._rbcrevs), rbcrevidx)
410 411 close = bool(branchidx & _rbccloseflag)
411 412 if close:
412 413 branchidx &= _rbcbranchidxmask
General Comments 0
You need to be logged in to leave comments. Login now