tmsgpack 0.2.10__tar.gz → 0.2.12__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tmsgpack-0.2.12/Automatic-Version +1 -0
- {tmsgpack-0.2.10 → tmsgpack-0.2.12}/PKG-INFO +1 -1
- {tmsgpack-0.2.10 → tmsgpack-0.2.12}/tmsgpack/api.py +1 -1
- {tmsgpack-0.2.10 → tmsgpack-0.2.12}/tmsgpack.egg-info/PKG-INFO +1 -1
- {tmsgpack-0.2.10 → tmsgpack-0.2.12}/tmsgpack.egg-info/SOURCES.txt +0 -2
- tmsgpack-0.2.10/Automatic-Version +0 -1
- tmsgpack-0.2.10/tmsgpack/cython.c +0 -38549
- tmsgpack-0.2.10/tmsgpack/cython.pyx +0 -634
- {tmsgpack-0.2.10 → tmsgpack-0.2.12}/COPYING +0 -0
- {tmsgpack-0.2.10 → tmsgpack-0.2.12}/LICENSE +0 -0
- {tmsgpack-0.2.10 → tmsgpack-0.2.12}/MANIFEST.in +0 -0
- {tmsgpack-0.2.10 → tmsgpack-0.2.12}/README.md +0 -0
- {tmsgpack-0.2.10 → tmsgpack-0.2.12}/pyproject.toml +0 -0
- {tmsgpack-0.2.10 → tmsgpack-0.2.12}/setup.cfg +0 -0
- {tmsgpack-0.2.10 → tmsgpack-0.2.12}/setup.py +0 -0
- {tmsgpack-0.2.10 → tmsgpack-0.2.12}/tmsgpack/__init__.py +0 -0
- {tmsgpack-0.2.10 → tmsgpack-0.2.12}/tmsgpack.egg-info/dependency_links.txt +0 -0
- {tmsgpack-0.2.10 → tmsgpack-0.2.12}/tmsgpack.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.2.12
|
|
@@ -9,7 +9,7 @@ class EncodeDecode:
|
|
|
9
9
|
codec_type, new_codec, new_value = self.prep_encode(value, target)
|
|
10
10
|
ebuf = EncodeBuffer()
|
|
11
11
|
self.ebuf_put_value(ebuf, codec_type)
|
|
12
|
-
if new_codec is None: ebuf.
|
|
12
|
+
if new_codec is None: ebuf.wr_bytes(new_value)
|
|
13
13
|
else: new_codec.ebuf_put_value(ebuf, new_value)
|
|
14
14
|
return ebuf.as_bytes()
|
|
15
15
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0.2.10
|