Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fixed `encoding` argument for unpacker in Python | tailhook | 2011-08-22 | 1 | -1/+21 | |
| | ||||||
* | Revert "(python) Change error message for unicode is passed but no encoding is" | INADA Naoki | 2011-05-31 | 1 | -1/+1 | |
| | | | | 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 | 2 | -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 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 | 1 | -2/+2 | |
| | ||||||
* | 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: 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: 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``. | |||||
* | python: Support old buffer protocol when unpack. (experimental) | INADA Naoki | 2010-11-03 | 1 | -104/+56 | |
| | ||||||
* | Add list_hook option to unpacker. | INADA Naoki | 2010-10-26 | 3 | -13/+34 | |
| | ||||||
* | Add check for recursion limit and default hook result. | INADA Naoki | 2010-10-26 | 1 | -14/+10 | |
| | ||||||
* | Remove unnecessary refcount manipulation. | INADA Naoki | 2010-10-26 | 2 | -5/+0 | |
| | ||||||
* | Add `object_hook` option to unpack and `default` option to pack. | INADA Naoki | 2010-10-26 | 3 | -10/+61 | |
| | | | | (see simplejson for how to use). | |||||
* | Use PyUnicode_AsUTF8String() instead of o.encode('utf-8'). | INADA Naoki | 2010-10-07 | 1 | -4/+5 | |
| | ||||||
* | Add msgpack.version as version tuple. | INADA Naoki | 2010-09-02 | 1 | -0/+1 | |
| | ||||||
* | python: Add test for python3 and fix found problems. | INADA Naoki | 2010-09-02 | 1 | -9/+11 | |
| | ||||||
* | python: Fix Unpacker.feed doesn't accept bytes on Python3. | INADA Naoki | 2010-09-02 | 1 | -3/+1 | |
| | ||||||
* | Merge branch 'master' of github.com:msgpack/msgpack | INADA Naoki | 2010-09-02 | 1 | -0/+7 | |
|\ | ||||||
| * | Python: add "load(s)/dump(s)" alias for compatibility to ↵ | INADA Naoki | 2010-06-15 | 1 | -0/+7 | |
| | | | | | | | | simplejson/marshal/pickle. | |||||
* | | python: Support Python3. | INADA Naoki | 2010-09-02 | 3 | -20/+21 | |
|/ | ||||||
* | should raise TypeError on find unsupported value | Keiji Muraishi | 2010-03-31 | 1 | -1/+1 | |
| | ||||||
* | Make tuple default. | inada-n | 2009-12-17 | 2 | -13/+11 | |
| | ||||||
* | Add `use_tuple` option that returns tuple for array object to Unpacker. | Naoki INADA | 2009-12-17 | 2 | -3/+21 | |
| | ||||||
* | Update new headers. | Naoki INADA | 2009-12-17 | 6 | -219/+225 | |
| | ||||||
* | Fix bug come from previous commit | inada-n | 2009-12-16 | 1 | -1/+2 | |
| | ||||||
* | Fix stream unpacker broken. | inada-n | 2009-12-16 | 1 | -1/+11 | |
| | ||||||
* | Fix: Unpacker.unpack() may raise StopIteration before unpacking large object ↵ | inada-n | 2009-07-13 | 1 | -1/+7 | |
| | | | | when deserializing from file. | |||||
* | Release 0.1.0 | Naoki INADA | 2009-07-12 | 1 | -6/+6 | |
| | ||||||
* | Clean up | Naoki INADA | 2009-07-12 | 1 | -2/+4 | |
| | ||||||
* | Support MinGW. | Naoki INADA | 2009-07-09 | 1 | -0/+13 | |
| | ||||||
* | Fix memory leak. Remove stream packing feature. Add errorcheck in packing. | Naoki INADA | 2009-07-01 | 2 | -64/+73 | |
| | ||||||
* | Major speedup on packing. | Naoki INADA | 2009-07-01 | 2 | -50/+39 | |
| | ||||||
* | Some optimization on packing. | Naoki INADA | 2009-06-30 | 2 | -59/+39 | |
| | ||||||
* | Fix error on packing unsigned long long. | Naoki INADA | 2009-06-29 | 1 | -13/+21 | |
| | ||||||
* | Refactor packing code. | Naoki INADA | 2009-06-29 | 2 | -24/+7 | |
| | ||||||
* | Don't use C++. | Naoki INADA | 2009-06-28 | 1 | -2/+2 | |
| | ||||||
* | Ues more suitable type when packing. | Naoki INADA | 2009-06-28 | 1 | -8/+11 | |
| | ||||||
* | Implement streaming deserializer. | Naoki INADA | 2009-06-26 | 1 | -15/+147 | |
| | ||||||
* | Stop unnecessary caching. | Naoki INADA | 2009-06-24 | 1 | -39/+5 | |
| | ||||||
* | Check return value of c-api. | Naoki INADA | 2009-06-24 | 1 | -26/+92 | |
| | ||||||
* | Reduce memory footprint. | Naoki INADA | 2009-06-24 | 2 | -6/+7 | |
| | ||||||
* | Remove duplicated values. | Naoki INADA | 2009-06-24 | 6 | -40/+1276 | |
| | ||||||
* | Remove unneccessary value. | Naoki INADA | 2009-06-24 | 1 | -13/+7 | |
| |