changeset 32281:c34532365b38

branchmap: remove use of buffer() to support Python 2.6 The use of buffer() was added in 7359157b9e46 to support Python 2.6, which we no longer support.
author Gregory Szorc <gregory.szorc@gmail.com>
date Sat, 13 May 2017 11:58:08 -0700
parents 9b81fb217820
children 0c0c9b12de52
files mercurial/branchmap.py
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/branchmap.py	Sat May 13 11:55:39 2017 -0700
+++ b/mercurial/branchmap.py	Sat May 13 11:58:08 2017 -0700
@@ -406,8 +406,7 @@
 
         # fast path: extract data from cache, use it if node is matching
         reponode = changelog.node(rev)[:_rbcnodelen]
-        cachenode, branchidx = unpack_from(
-            _rbcrecfmt, util.buffer(self._rbcrevs), rbcrevidx)
+        cachenode, branchidx = unpack_from(_rbcrecfmt, self._rbcrevs, rbcrevidx)
         close = bool(branchidx & _rbccloseflag)
         if close:
             branchidx &= _rbcbranchidxmask