summaryrefslogtreecommitdiff
path: root/msgpack
Commit message (Collapse)AuthorAgeFilesLines
* remove deprecated api.INADA Naoki2012-06-271-9/+0
|
* manage to compile on windowsINADA Naoki2012-06-262-3/+3
| | | | Use C++ compiler to build.
* Fix new version of msgpack.INADA Naoki2012-06-262-6/+13
|
* Update msgpack version.INADA Naoki2012-06-265-154/+369
|
* Make sure objects inherited from Dict are properly casted (or else Cython ↵Steeve Morin2012-06-161-1/+1
| | | | will complain and crash).
* Merge branch 'master' of github.com:msgpack/msgpack-pythonINADA Naoki2012-03-081-2/+6
|\
| * Better prototypes.Steeve Morin2012-02-281-2/+2
| |
| * Fix massive memory leak with object_hook and list_hook when unpacking.Steeve Morin2012-02-281-2/+6
| |
* | small optimization.INADA Naoki2012-03-081-2/+2
|/
* Be greedier when checking for tuples or lists.Steeve Morin2012-02-161-1/+1
|
* Correcting 'utf-8' to 'unicode'.David Wolever2012-02-101-1/+2
|
* 0.1.12: re-enable packs()/unpacks() aliases.0.1.12INADA Naoki2011-12-271-0/+9
|
* Fix compile error on MSVC. (davidgaleano)INADA Naoki2011-12-253-4/+9
|
* Remove unnecessary semicolon.INADA Naoki2011-09-021-2/+2
|
* Use cython's embedsignature directive and enhance some docstrings.INADA Naoki2011-08-261-21/+28
|
* Add signature to docstring.INADA Naoki2011-08-221-4/+18
|
* Remove extra alias.INADA Naoki2011-08-221-2/+0
|
* Fixed `encoding` argument for unpacker in Pythontailhook2011-08-221-1/+21
|
* Revert "(python) Change error message for unicode is passed but no encoding is"INADA Naoki2011-05-311-1/+1
| | | | This reverts commit bd73742552cf16592662a7ec5ba3608888081131.
* (python) Change error message for unicode is passed but no encoding isINADA Naoki2011-05-311-1/+1
| | | | specified.
* Implemented encoding for stringstailhook2011-04-152-17/+63
| | | | | | | | | * Packer by default uses `utf-8` encoding by default * Unpacker uses `None` by default, so no decoding is done * Both pack and unpack has `encoding` and `unicode_errors` arguments, if `encoding` is `None` no encoding/decoding is done, otherwise it is python codec. `unicode_errors` is supplied as `errors` parameter to codec
* python: Remove UnpackIterator. Unpacker is iterator of itself.INADA Naoki2011-01-301-13/+4
|
* python: Disable gc while deserializing.INADA Naoki2011-01-291-0/+7
|
* python: Fix segmentation fault when `default` returns it's argument.INADA Naoki2011-01-291-2/+2
|
* python: refactoring.INADA Naoki2011-01-291-10/+9
|
* Add use_list option to unpack and unpackbINADA Naoki2011-01-281-4/+4
|
* python: Add memory error check.INADA Naoki2011-01-101-1/+5
|
* python: Check if (m|re)alloc's return value is NULL. (Thanks to Mateusz)INADA Naoki2011-01-101-1/+6
|
* python: Fix typo in docstring. (thanks to Mateusz.)INADA Naoki2011-01-101-1/+1
|
* python: Fix another segv.INADA Naoki2011-01-091-0/+1
|
* python: Fix segv on unpacking from stream.INADA Naoki2011-01-091-15/+24
|
* python: Make aliases for API compatibility to pickle.INADA Naoki2011-01-091-3/+2
| | | | ``dumps`` is alias of ``packb`` and ``loads`` is alias of ``unpacks``.
* python: Support old buffer protocol when unpack. (experimental)INADA Naoki2010-11-031-104/+56
|
* Add list_hook option to unpacker.INADA Naoki2010-10-263-13/+34
|
* Add check for recursion limit and default hook result.INADA Naoki2010-10-261-14/+10
|
* Remove unnecessary refcount manipulation.INADA Naoki2010-10-262-5/+0
|
* Add `object_hook` option to unpack and `default` option to pack.INADA Naoki2010-10-263-10/+61
| | | | (see simplejson for how to use).
* Use PyUnicode_AsUTF8String() instead of o.encode('utf-8').INADA Naoki2010-10-071-4/+5
|
* Add msgpack.version as version tuple.INADA Naoki2010-09-021-0/+1
|
* python: Add test for python3 and fix found problems.INADA Naoki2010-09-021-9/+11
|
* python: Fix Unpacker.feed doesn't accept bytes on Python3.INADA Naoki2010-09-021-3/+1
|
* Merge branch 'master' of github.com:msgpack/msgpackINADA Naoki2010-09-021-0/+7
|\
| * Python: add "load(s)/dump(s)" alias for compatibility to ↵INADA Naoki2010-06-151-0/+7
| | | | | | | | simplejson/marshal/pickle.
* | python: Support Python3.INADA Naoki2010-09-023-20/+21
|/
* should raise TypeError on find unsupported valueKeiji Muraishi2010-03-311-1/+1
|
* Make tuple default.inada-n2009-12-172-13/+11
|
* Add `use_tuple` option that returns tuple for array object to Unpacker.Naoki INADA2009-12-172-3/+21
|
* Update new headers.Naoki INADA2009-12-176-219/+225
|
* Fix bug come from previous commitinada-n2009-12-161-1/+2
|
* Fix stream unpacker broken.inada-n2009-12-161-1/+11
|