comparison hgext/fastannotate/protocol.py @ 41264:dfc73c803b77

fastannotate: adapt to buffer() going a way in Python 3 There's probably something more efficient I could do here, but I'm disinclined to spend much time on this at the moment. Differential Revision: https://phab.mercurial-scm.org/D5614
author Augie Fackler <augie@google.com>
date Wed, 16 Jan 2019 11:56:43 -0500
parents e40b7a504b1d
children 876494fd967d
comparison
equal deleted inserted replaced
41263:c2f62720e37d 41264:dfc73c803b77
99 vfspath = size = '' 99 vfspath = size = ''
100 while i < l: 100 while i < l:
101 ch = payload[i:i + 1] 101 ch = payload[i:i + 1]
102 if ch == '\0': 102 if ch == '\0':
103 if state == 1: 103 if state == 1:
104 result[vfspath] = buffer(payload, i + 1, int(size)) 104 result[vfspath] = payload[i + 1:i + 1 + int(size)]
105 i += int(size) 105 i += int(size)
106 state = 0 106 state = 0
107 vfspath = size = '' 107 vfspath = size = ''
108 elif state == 0: 108 elif state == 0:
109 state = 1 109 state = 1