aboutsummaryrefslogtreecommitdiffhomepage
path: root/python
diff options
context:
space:
mode:
authorGravatar Juan Leni <lenijuan@gmail.com>2017-10-10 20:59:17 +0200
committerGravatar Juan Leni <lenijuan@gmail.com>2017-10-11 06:46:25 +0200
commit08334f0908991601152a103cf2934f991bab2efd (patch)
treebaaf65ad25e6f5ded727618ca81b3e92385c51b3 /python
parentc4083bb3d1231f8a94f2f000434e38528bdff64a (diff)
Converting to immutable hashable types
Diffstat (limited to 'python')
-rwxr-xr-xpython/google/protobuf/internal/decoder.py2
-rwxr-xr-xpython/google/protobuf/internal/encoder.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/python/google/protobuf/internal/decoder.py b/python/google/protobuf/internal/decoder.py
index ff3e6d30..52b64915 100755
--- a/python/google/protobuf/internal/decoder.py
+++ b/python/google/protobuf/internal/decoder.py
@@ -181,7 +181,7 @@ def ReadTag(buffer, pos):
while six.indexbytes(buffer, pos) & 0x80:
pos += 1
pos += 1
- return (buffer[start:pos], pos)
+ return (six.binary_type(buffer[start:pos]), pos)
# --------------------------------------------------------------------
diff --git a/python/google/protobuf/internal/encoder.py b/python/google/protobuf/internal/encoder.py
index 8c6a1189..40c62d67 100755
--- a/python/google/protobuf/internal/encoder.py
+++ b/python/google/protobuf/internal/encoder.py
@@ -418,7 +418,7 @@ def _VarintBytes(value):
def TagBytes(field_number, wire_type):
"""Encode the given tag and return the bytes. Only called at startup."""
- return _VarintBytes(wire_format.PackTag(field_number, wire_type))
+ return six.binary_type( _VarintBytes(wire_format.PackTag(field_number, wire_type)) )
# --------------------------------------------------------------------
# As with sizers (see above), we have a number of common encoder