Applied Ulrich Kunitz's patches to slightly optimize Python serialization code.
This commit is contained in:
parent
6fdb0964e3
commit
24856db0e9
3 changed files with 5 additions and 4 deletions
|
@ -36,3 +36,5 @@ Maven packaging:
|
|||
|
||||
Non-Google patch contributors:
|
||||
Kevin Ko <kevin.s.ko@gmail.com>
|
||||
Johan Euphrosine <proppy@aminche.com>
|
||||
Ulrich Kunitz <kune@deine-taler.de>
|
||||
|
|
|
@ -101,11 +101,10 @@ class OutputStream(object):
|
|||
while True:
|
||||
bits = unsigned_value & 0x7f
|
||||
unsigned_value >>= 7
|
||||
if unsigned_value:
|
||||
bits |= 0x80
|
||||
self._buffer.append(bits)
|
||||
if not unsigned_value:
|
||||
self._buffer.append(bits)
|
||||
break
|
||||
self._buffer.append(0x80|bits)
|
||||
|
||||
def ToString(self):
|
||||
"""Returns a string containing the bytes in our internal buffer."""
|
||||
|
|
|
@ -87,7 +87,7 @@ def ZigZagEncode(value):
|
|||
"""
|
||||
if value >= 0:
|
||||
return value << 1
|
||||
return ((value << 1) ^ (~0)) | 0x1
|
||||
return (value << 1) ^ (~0)
|
||||
|
||||
|
||||
def ZigZagDecode(value):
|
||||
|
|
Loading…
Add table
Reference in a new issue