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`.
This commit is contained in:
INADA Naoki 2018-10-03 20:55:51 +09:00 committed by Inada Naoki
parent 91ec9e1daf
commit f6f9597249
4 changed files with 10 additions and 15 deletions

4
msgpack/_msgpack.pyx Normal file
View file

@ -0,0 +1,4 @@
# coding: utf-8
#cython: embedsignature=True, c_string_encoding=ascii
include "_packer.pyx"
include "_unpacker.pyx"