diff options
author | INADA Naoki <songofacandy@gmail.com> | 2018-10-03 20:55:51 +0900 |
---|---|---|
committer | Inada Naoki <songofacandy@gmail.com> | 2018-11-08 20:27:35 +0900 |
commit | f6f95972492bcb83d8fe4c63be3b96d46e47bab7 (patch) | |
tree | e0003078b772d6c0e3a22862f8494bb723388a97 /msgpack/_msgpack.pyx | |
parent | 91ec9e1daf5cc915a47e2b356a7b1dd9662573a3 (diff) | |
download | msgpack-python-f6f95972492bcb83d8fe4c63be3b96d46e47bab7.tar.gz |
Merge extension module
There were `_packer.so` and `_unpacker.so`.
But single module is simpler than double module.
Merge extension module into single `_msgpack.so`.
Diffstat (limited to 'msgpack/_msgpack.pyx')
-rw-r--r-- | msgpack/_msgpack.pyx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/msgpack/_msgpack.pyx b/msgpack/_msgpack.pyx new file mode 100644 index 0000000..4381394 --- /dev/null +++ b/msgpack/_msgpack.pyx @@ -0,0 +1,4 @@ +# coding: utf-8 +#cython: embedsignature=True, c_string_encoding=ascii +include "_packer.pyx" +include "_unpacker.pyx" |