tmsgpack 0.2.14__tar.gz → 0.2.16__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.16/Automatic-Version +1 -0
- {tmsgpack-0.2.14 → tmsgpack-0.2.16}/PKG-INFO +1 -1
- {tmsgpack-0.2.14 → tmsgpack-0.2.16}/tmsgpack/api.py +3 -3
- {tmsgpack-0.2.14 → tmsgpack-0.2.16}/tmsgpack/cython.c +1465 -1182
- {tmsgpack-0.2.14 → tmsgpack-0.2.16}/tmsgpack/cython.pyx +9 -4
- {tmsgpack-0.2.14 → tmsgpack-0.2.16}/tmsgpack.egg-info/PKG-INFO +1 -1
- tmsgpack-0.2.14/Automatic-Version +0 -1
- {tmsgpack-0.2.14 → tmsgpack-0.2.16}/COPYING +0 -0
- {tmsgpack-0.2.14 → tmsgpack-0.2.16}/LICENSE +0 -0
- {tmsgpack-0.2.14 → tmsgpack-0.2.16}/MANIFEST.in +0 -0
- {tmsgpack-0.2.14 → tmsgpack-0.2.16}/README.md +0 -0
- {tmsgpack-0.2.14 → tmsgpack-0.2.16}/pyproject.toml +0 -0
- {tmsgpack-0.2.14 → tmsgpack-0.2.16}/setup.cfg +0 -0
- {tmsgpack-0.2.14 → tmsgpack-0.2.16}/setup.py +0 -0
- {tmsgpack-0.2.14 → tmsgpack-0.2.16}/tmsgpack/__init__.py +0 -0
- {tmsgpack-0.2.14 → tmsgpack-0.2.16}/tmsgpack.egg-info/SOURCES.txt +0 -0
- {tmsgpack-0.2.14 → tmsgpack-0.2.16}/tmsgpack.egg-info/dependency_links.txt +0 -0
- {tmsgpack-0.2.14 → tmsgpack-0.2.16}/tmsgpack.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.2.16
|
|
@@ -35,13 +35,13 @@ class BasicCodec(EncodeDecode):
|
|
|
35
35
|
if codec_type is None: return self
|
|
36
36
|
raise TMsgpackError(f'Unsupported codec_type: {codec_type}')
|
|
37
37
|
|
|
38
|
-
def
|
|
38
|
+
def encode_value(self, ectx):
|
|
39
39
|
raise TMsgpackError(f'Unsupported value: {ectx.value}')
|
|
40
40
|
|
|
41
|
-
def
|
|
41
|
+
def decode_from_bytes(self, dctx):
|
|
42
42
|
raise TMsgpackError(f'No bytes extension defined: {dctx._type}')
|
|
43
43
|
|
|
44
|
-
def
|
|
44
|
+
def decode_from_list(self, dctx):
|
|
45
45
|
raise TMsgpackError(f'No tuple extension defined: {dctx._type}')
|
|
46
46
|
|
|
47
47
|
|