Refactor Cython code (#328)

_msgpack -> _cmsgpack
This commit is contained in:
INADA Naoki 2018-11-14 16:35:37 +09:00 committed by GitHub
parent 2b5f59166b
commit d782464c91
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 17 additions and 40 deletions

View file

@ -22,7 +22,7 @@ if os.environ.get('MSGPACK_PUREPYTHON'):
from msgpack.fallback import Packer, unpackb, Unpacker
else:
try:
from msgpack._msgpack import Packer, unpackb, Unpacker
from msgpack._cmsgpack import Packer, unpackb, Unpacker
except ImportError:
from msgpack.fallback import Packer, unpackb, Unpacker