summaryrefslogtreecommitdiff
path: root/msgpack/fallback.py
diff options
context:
space:
mode:
authorSergey Zhuravlev <zhurs@ya.ru>2014-02-12 23:09:23 +0400
committerSergey Zhuravlev <zhurs@ya.ru>2014-02-12 23:09:23 +0400
commit11a3b1561a07b28a37ac22637f636c4c5ac24c23 (patch)
tree3c5d37a8083278c2d93f9f57c84d0f400d51757d /msgpack/fallback.py
parent48ca2d700d019bfec9abe3242a8eb3073c803951 (diff)
downloadmsgpack-python-11a3b1561a07b28a37ac22637f636c4c5ac24c23.tar.gz
fixed support of python3
Diffstat (limited to 'msgpack/fallback.py')
-rw-r--r--msgpack/fallback.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/msgpack/fallback.py b/msgpack/fallback.py
index 3ef1341..b673222 100644
--- a/msgpack/fallback.py
+++ b/msgpack/fallback.py
@@ -194,7 +194,7 @@ class Unpacker(object):
if isinstance(next_bytes, array.array):
next_bytes = next_bytes.tostring()
elif isinstance(next_bytes, bytearray):
- next_bytes = str(next_bytes)
+ next_bytes = (bytes if PY3 else str)(next_bytes)
assert self._fb_feeding
if self._fb_buf_n + len(next_bytes) > self._max_buffer_size:
raise BufferFull