diff options
Diffstat (limited to 'msgpack')
-rw-r--r-- | msgpack/__init__.py | 3 | ||||
-rw-r--r-- | msgpack/_packer.pyx (renamed from msgpack/_msgpack.pyx) | 0 |
2 files changed, 2 insertions, 1 deletions
diff --git a/msgpack/__init__.py b/msgpack/__init__.py index 98b1ab7..1aacee1 100644 --- a/msgpack/__init__.py +++ b/msgpack/__init__.py @@ -1,6 +1,7 @@ # coding: utf-8 from msgpack._version import version -from msgpack._msgpack import * +from msgpack.exceptions import * +from msgpack._packer import pack, packb, Packer, unpack, unpackb, Unpacker # alias for compatibility to simplejson/marshal/pickle. load = unpack diff --git a/msgpack/_msgpack.pyx b/msgpack/_packer.pyx index d58255e..d58255e 100644 --- a/msgpack/_msgpack.pyx +++ b/msgpack/_packer.pyx |