mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-06 09:50:01 +00:00
Merge branch 'master' of github.com:msgpack/msgpack
This commit is contained in:
commit
a301c14faa
2 changed files with 8 additions and 1 deletions
|
|
@ -1,3 +1,10 @@
|
|||
# coding: utf-8
|
||||
from msgpack._msgpack import *
|
||||
|
||||
# alias for compatibility to simplejson/marshal/pickle.
|
||||
load = unpack
|
||||
loads = unpackb
|
||||
|
||||
dump = pack
|
||||
dumps = packb
|
||||
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -14,7 +14,7 @@ except ImportError:
|
|||
from distutils.command.build_ext import build_ext
|
||||
have_cython = False
|
||||
|
||||
version = '0.1.3'
|
||||
version = '0.1.4'
|
||||
|
||||
# take care of extension modules.
|
||||
if have_cython:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue