Merge branch 'master' of github.com:msgpack/msgpack

This commit is contained in:
INADA Naoki
2010-09-02 01:30:32 +09:00
170 changed files with 8391 additions and 3422 deletions

View File

@@ -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

View File

@@ -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: