Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Merge pull request #8 from steeve/patch-1 | INADA Naoki | 2012-06-18 | 1 | -1/+1 | |
|\ | | | | | Make sure objects inherited from Dict are properly casted | |||||
| * | Make sure objects inherited from Dict are properly casted (or else Cython ↵ | Steeve Morin | 2012-06-16 | 1 | -1/+1 | |
|/ | | | | will complain and crash). | |||||
* | release 0.1.130.1.13 | INADA Naoki | 2012-04-21 | 2 | -1/+22 | |
| | ||||||
* | Merge branch 'master' of github.com:msgpack/msgpack-python | INADA Naoki | 2012-03-08 | 1 | -2/+6 | |
|\ | ||||||
| * | Merge pull request #7 from steeve/patch-3 | methane | 2012-02-28 | 1 | -2/+6 | |
| |\ | | | | | | | Fix massive memory leak with object_hook and list_hook when unpacking. | |||||
| | * | Better prototypes. | Steeve Morin | 2012-02-28 | 1 | -2/+2 | |
| | | | ||||||
| | * | Fix massive memory leak with object_hook and list_hook when unpacking. | Steeve Morin | 2012-02-28 | 1 | -2/+6 | |
| |/ | ||||||
* | | small optimization. | INADA Naoki | 2012-03-08 | 1 | -2/+2 | |
|/ | ||||||
* | Merge pull request #6 from steeve/patch-2 | methane | 2012-02-16 | 1 | -1/+1 | |
|\ | | | | | Be greedier when checking for tuples or lists. | |||||
| * | Be greedier when checking for tuples or lists. | Steeve Morin | 2012-02-16 | 1 | -1/+1 | |
|/ | ||||||
* | Merge pull request #2 from urso/master | methane | 2012-02-10 | 1 | -1/+3 | |
|\ | | | | | adopt setup.py to work with python older 2.7 | |||||
| * | adopt setup.py to work with python installation older 2.7 | Steffen Siering | 2012-01-18 | 1 | -1/+3 | |
| | | ||||||
* | | Merge pull request #3 from wolever/patch-1 | methane | 2012-02-10 | 1 | -1/+2 | |
|\ \ | |/ |/| | Correcting 'utf-8' to 'unicode'. | |||||
| * | Correcting 'utf-8' to 'unicode'. | David Wolever | 2012-02-10 | 1 | -1/+2 | |
|/ | ||||||
* | 0.1.12: re-enable packs()/unpacks() aliases.0.1.12 | INADA Naoki | 2011-12-27 | 3 | -1/+20 | |
| | ||||||
* | Release 0.1.110.1.11 | INADA Naoki | 2011-12-26 | 2 | -2/+3 | |
| | ||||||
* | Fix compile error on MSVC. (davidgaleano) | INADA Naoki | 2011-12-25 | 3 | -4/+9 | |
| | ||||||
* | add *.so to .gitignore | INADA Naoki | 2011-12-25 | 1 | -0/+1 | |
| | ||||||
* | Remove unnecessary semicolon. | INADA Naoki | 2011-09-02 | 1 | -2/+2 | |
| | ||||||
* | Update changelog | INADA Naoki | 2011-09-02 | 1 | -0/+10 | |
| | ||||||
* | Add test/ and test3/ to MANIFEST.in | INADA Naoki | 2011-09-02 | 1 | -0/+2 | |
| | ||||||
* | Use cython's embedsignature directive and enhance some docstrings. | INADA Naoki | 2011-08-26 | 1 | -21/+28 | |
| | ||||||
* | Add signature to docstring. | INADA Naoki | 2011-08-22 | 1 | -4/+18 | |
| | ||||||
* | Remove extra alias. | INADA Naoki | 2011-08-22 | 1 | -2/+0 | |
| | ||||||
* | Start 0.1.11a1.dev1 | INADA Naoki | 2011-08-22 | 1 | -1/+1 | |
| | ||||||
* | 0.1.100.1.10 | INADA Naoki | 2011-08-22 | 3 | -4/+5 | |
| | ||||||
* | Fix error in tests. | INADA Naoki | 2011-08-22 | 1 | -1/+1 | |
| | ||||||
* | Fixed `encoding` argument for unpacker in Python | tailhook | 2011-08-22 | 3 | -3/+34 | |
| | ||||||
* | Fix install command for Windows. | INADA Naoki | 2011-08-21 | 1 | -1/+2 | |
| | ||||||
* | rename README to README.rst | INADA Naoki | 2011-08-21 | 1 | -0/+0 | |
| | ||||||
* | (python) Fix typo in ChangeLog | INADA Naoki | 2011-06-24 | 1 | -1/+1 | |
| | ||||||
* | (python) make test pass with Python 2.5 | inada-n | 2011-06-01 | 2 | -24/+29 | |
| | ||||||
* | Revert "(python) Change error message for unicode is passed but no encoding is" | INADA Naoki | 2011-05-31 | 2 | -1/+11 | |
| | | | | This reverts commit bd73742552cf16592662a7ec5ba3608888081131. | |||||
* | (python) Change error message for unicode is passed but no encoding is | INADA Naoki | 2011-05-31 | 1 | -1/+1 | |
| | | | | specified. | |||||
* | Implemented encoding for strings | tailhook | 2011-04-15 | 5 | -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 Naoki | 2011-01-30 | 1 | -13/+4 | |
| | ||||||
* | python: Disable gc while deserializing. | INADA Naoki | 2011-01-29 | 1 | -0/+7 | |
| | ||||||
* | python: Fix segmentation fault when `default` returns it's argument. | INADA Naoki | 2011-01-29 | 2 | -3/+3 | |
| | ||||||
* | python: 0.1.9 | INADA Naoki | 2011-01-29 | 2 | -1/+15 | |
| | ||||||
* | python: refactoring. | INADA Naoki | 2011-01-29 | 1 | -10/+9 | |
| | ||||||
* | Add use_list option to unpack and unpackb | INADA Naoki | 2011-01-28 | 1 | -4/+4 | |
| | ||||||
* | python: Add memory error check. | INADA Naoki | 2011-01-10 | 1 | -1/+5 | |
| | ||||||
* | python: Check if (m|re)alloc's return value is NULL. (Thanks to Mateusz) | INADA Naoki | 2011-01-10 | 1 | -1/+6 | |
| | ||||||
* | python: Fix typo in docstring. (thanks to Mateusz.) | INADA Naoki | 2011-01-10 | 1 | -1/+1 | |
| | ||||||
* | python: Change URL in setup.py from sf.net to msgpack.org | INADA Naoki | 2011-01-10 | 1 | -2/+2 | |
| | ||||||
* | python: msgpack-python-0.1.8 | INADA Naoki | 2011-01-09 | 2 | -2/+5 | |
| | ||||||
* | python: Fix another segv. | INADA Naoki | 2011-01-09 | 1 | -0/+1 | |
| | ||||||
* | python: Fix segv on unpacking from stream. | INADA Naoki | 2011-01-09 | 1 | -15/+24 | |
| | ||||||
* | python: Add test for issue29. | INADA Naoki | 2011-01-09 | 1 | -0/+49 | |
| | ||||||
* | python: Make aliases for API compatibility to pickle. | INADA Naoki | 2011-01-09 | 1 | -3/+2 | |
| | | | | ``dumps`` is alias of ``packb`` and ``loads`` is alias of ``unpacks``. |