summaryrefslogtreecommitdiff
path: root/msgpack/__init__.py
diff options
context:
space:
mode:
authorINADA Naoki <methane@users.noreply.github.com>2018-11-14 16:35:37 +0900
committerGitHub <noreply@github.com>2018-11-14 16:35:37 +0900
commitd782464c9150e448ab3a8d81197ff335e1ac2c2b (patch)
treed008991560c7ca596e11e4e760a3e613fe252bc4 /msgpack/__init__.py
parent2b5f59166beeccde0ee230c8673cf50932c8daba (diff)
downloadmsgpack-python-d782464c9150e448ab3a8d81197ff335e1ac2c2b.tar.gz
Refactor Cython code (#328)
_msgpack -> _cmsgpack
Diffstat (limited to 'msgpack/__init__.py')
-rw-r--r--msgpack/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/msgpack/__init__.py b/msgpack/__init__.py
index 7c5d4c0..7493c4c 100644
--- a/msgpack/__init__.py
+++ b/msgpack/__init__.py
@@ -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