Applied Ulrich Kunitz's patches to slightly optimize Python serialization code.

This commit is contained in:
temporal 2008-07-27 18:38:54 +00:00
parent 6fdb0964e3
commit 24856db0e9
3 changed files with 5 additions and 4 deletions

View file

@ -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>

View file

@ -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."""

View file

@ -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):