summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Merge pull request #8 from steeve/patch-1INADA Naoki2012-06-181-1/+1
|\ | | | | Make sure objects inherited from Dict are properly casted
| * Make sure objects inherited from Dict are properly casted (or else Cython ↵Steeve Morin2012-06-161-1/+1
|/ | | | will complain and crash).
* release 0.1.130.1.13INADA Naoki2012-04-212-1/+22
|
* Merge branch 'master' of github.com:msgpack/msgpack-pythonINADA Naoki2012-03-081-2/+6
|\
| * Merge pull request #7 from steeve/patch-3methane2012-02-281-2/+6
| |\ | | | | | | Fix massive memory leak with object_hook and list_hook when unpacking.
| | * 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
|/
* Merge pull request #6 from steeve/patch-2methane2012-02-161-1/+1
|\ | | | | Be greedier when checking for tuples or lists.
| * Be greedier when checking for tuples or lists.Steeve Morin2012-02-161-1/+1
|/
* Merge pull request #2 from urso/mastermethane2012-02-101-1/+3
|\ | | | | adopt setup.py to work with python older 2.7
| * adopt setup.py to work with python installation older 2.7Steffen Siering2012-01-181-1/+3
| |
* | Merge pull request #3 from wolever/patch-1methane2012-02-101-1/+2
|\ \ | |/ |/| Correcting 'utf-8' to 'unicode'.
| * Correcting 'utf-8' to 'unicode'.David Wolever2012-02-101-1/+2
|/
* 0.1.12: re-enable packs()/unpacks() aliases.0.1.12INADA Naoki2011-12-273-1/+20
|
* Release 0.1.110.1.11INADA Naoki2011-12-262-2/+3
|
* Fix compile error on MSVC. (davidgaleano)INADA Naoki2011-12-253-4/+9
|
* add *.so to .gitignoreINADA Naoki2011-12-251-0/+1
|
* Remove unnecessary semicolon.INADA Naoki2011-09-021-2/+2
|
* Update changelogINADA Naoki2011-09-021-0/+10
|
* Add test/ and test3/ to MANIFEST.inINADA Naoki2011-09-021-0/+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
|
* Start 0.1.11a1.dev1INADA Naoki2011-08-221-1/+1
|
* 0.1.100.1.10INADA Naoki2011-08-223-4/+5
|
* Fix error in tests.INADA Naoki2011-08-221-1/+1
|
* Fixed `encoding` argument for unpacker in Pythontailhook2011-08-223-3/+34
|
* Fix install command for Windows.INADA Naoki2011-08-211-1/+2
|
* rename README to README.rstINADA Naoki2011-08-211-0/+0
|
* (python) Fix typo in ChangeLogINADA Naoki2011-06-241-1/+1
|
* (python) make test pass with Python 2.5inada-n2011-06-012-24/+29
|
* Revert "(python) Change error message for unicode is passed but no encoding is"INADA Naoki2011-05-312-1/+11
| | | | 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-155-25/+169
| | | | | | | | | * 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-292-3/+3
|
* python: 0.1.9INADA Naoki2011-01-292-1/+15
|
* 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: Change URL in setup.py from sf.net to msgpack.orgINADA Naoki2011-01-101-2/+2
|
* python: msgpack-python-0.1.8INADA Naoki2011-01-092-2/+5
|
* python: Fix another segv.INADA Naoki2011-01-091-0/+1
|
* python: Fix segv on unpacking from stream.INADA Naoki2011-01-091-15/+24
|
* python: Add test for issue29.INADA Naoki2011-01-091-0/+49
|
* 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``.