diff options
author | INADA Naoki <songofacandy@gmail.com> | 2010-09-02 01:29:57 +0900 |
---|---|---|
committer | INADA Naoki <songofacandy@gmail.com> | 2010-09-02 01:29:57 +0900 |
commit | 0dc8938dbfff67760834bd97150fee5fdb8e875c (patch) | |
tree | 4781af3acd96da2a4c2f9d26672d28a3a34e2170 /msgpack/__init__.py | |
parent | 76cc80c25d10d1224f0f16c6a74b531bf452aede (diff) | |
download | msgpack-python-0dc8938dbfff67760834bd97150fee5fdb8e875c.tar.gz |
python: Support Python3.
Diffstat (limited to 'msgpack/__init__.py')
-rw-r--r-- | msgpack/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/msgpack/__init__.py b/msgpack/__init__.py index 797b29c..9593714 100644 --- a/msgpack/__init__.py +++ b/msgpack/__init__.py @@ -1,3 +1,3 @@ # coding: utf-8 -from _msgpack import * +from msgpack._msgpack import * |