mirror of
https://github.com/msgpack/msgpack-python.git
synced 2025-10-19 20:03:16 +00:00

There were `_packer.so` and `_unpacker.so`. But single module is simpler than double module. Merge extension module into single `_msgpack.so`.
4 lines
116 B
Cython
4 lines
116 B
Cython
# coding: utf-8
|
|
#cython: embedsignature=True, c_string_encoding=ascii
|
|
include "_packer.pyx"
|
|
include "_unpacker.pyx"
|