release date: | NOT RELEASED YET |
---|
- Add
encoding
andunicode_errors
option to packer and unpacker. When this option is specified, (un)packs unicode object instead of bytes. This enables using msgpack as a replacement of json.
release date: | 2011-01-29 |
---|
use_list
option is added to unpack(b) like Unpacker. (Use keyword argument because order of parameters are different)
- Fix typo.
- Add MemoryError check.
release date: | 2011-01-10 |
---|
- Support
loads
anddumps
aliases for API compatibility with simplejson and pickle. - Add object_hook and list_hook option to unpacker. It allows you to hook unpacing mapping type and array type.
- Add default option to packer. It allows you to pack unsupported types.
- unpacker accepts (old) buffer types.
- Fix segv around
Unpacker.feed
orUnpacker(file)
.
release date: | 2010-11-02 |
---|
- Add object_hook and list_hook option to unpacker. It allows you to hook unpacing mapping type and array type.
- Add default option to packer. It allows you to pack unsupported types.
- unpacker accepts (old) buffer types.
- Compilation error on win32.