Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | packb supports use_single_float option. | INADA Naoki | 2012-09-21 | 1 | -2/+3 | |
| | | ||||||
* | | Rename use_float to use_single_float. | INADA Naoki | 2012-09-21 | 1 | -2/+2 | |
| | | ||||||
* | | Merge branch 'master' of github.com:msgpack/msgpack-python | INADA Naoki | 2012-09-21 | 1 | -4/+12 | |
|\ \ | |/ | ||||||
| * | Merge pull request #11 from TobiasSimon/float_ext | INADA Naoki | 2012-08-28 | 1 | -4/+12 | |
| |\ | | | | | | | added float serialization support | |||||
| | * | added float serialization support | TobiasSimon | 2012-08-20 | 1 | -4/+12 | |
| | | | ||||||
* | | | Fix reading more than read_size. | INADA Naoki | 2012-09-21 | 1 | -17/+14 | |
|/ / | ||||||
* | | Stop disable/enable gc. | INADA Naoki | 2012-08-24 | 1 | -11/+1 | |
|/ | | | | json and pickle modules don't stop gc. It's a very dirty hack. | |||||
* | 0.2.10.2.1 | INADA Naoki | 2012-08-20 | 1 | -1/+1 | |
| | ||||||
* | Change the way to manage version number. | INADA Naoki | 2012-08-19 | 2 | -1/+2 | |
| | ||||||
* | Default value of read_size is min(1024**2, max_buffer_size) | INADA Naoki | 2012-07-20 | 1 | -3/+5 | |
| | ||||||
* | raise ValueError when read_size > max_buffer_size. | INADA Naoki | 2012-07-20 | 1 | -4/+5 | |
| | ||||||
* | Add max_buffer_size to Unpacker. | INADA Naoki | 2012-07-13 | 1 | -14/+57 | |
| | ||||||
* | remove deprecated api. | INADA Naoki | 2012-06-27 | 1 | -9/+0 | |
| | ||||||
* | manage to compile on windows | INADA Naoki | 2012-06-26 | 2 | -3/+3 | |
| | | | | Use C++ compiler to build. | |||||
* | Fix new version of msgpack. | INADA Naoki | 2012-06-26 | 2 | -6/+13 | |
| | ||||||
* | Update msgpack version. | INADA Naoki | 2012-06-26 | 5 | -154/+369 | |
| | ||||||
* | Make sure objects inherited from Dict are properly casted (or else Cython ↵ | Steeve Morin | 2012-06-16 | 1 | -1/+1 | |
| | | | | will complain and crash). | |||||
* | Merge branch 'master' of github.com:msgpack/msgpack-python | INADA Naoki | 2012-03-08 | 1 | -2/+6 | |
|\ | ||||||
| * | 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 | |
|/ | ||||||
* | Be greedier when checking for tuples or lists. | Steeve Morin | 2012-02-16 | 1 | -1/+1 | |
| | ||||||
* | 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 | 1 | -0/+9 | |
| | ||||||
* | Fix compile error on MSVC. (davidgaleano) | INADA Naoki | 2011-12-25 | 3 | -4/+9 | |
| | ||||||
* | Remove unnecessary semicolon. | INADA Naoki | 2011-09-02 | 1 | -2/+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 | |
| | ||||||
* | 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 | |
| |