Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge extension module | INADA Naoki | 2018-11-08 | 1 | -0/+4 |
| | | | | | | | There were `_packer.so` and `_unpacker.so`. But single module is simpler than double module. Merge extension module into single `_msgpack.so`. | ||||
* | rename _msgpack.pyx => _packer.pyx | INADA Naoki | 2012-12-11 | 1 | -629/+0 |
| | |||||
* | Add `autoreset` option to Packer. | INADA Naoki | 2012-12-10 | 1 | -12/+36 |
| | |||||
* | Add `Packer.pack_pairs`. | INADA Naoki | 2012-12-10 | 1 | -4/+35 |
| | |||||
* | Remove unused UnpackException. | INADA Naoki | 2012-12-10 | 1 | -1/+0 |
| | |||||
* | Improve docstring. | INADA Naoki | 2012-12-10 | 1 | -8/+4 |
| | |||||
* | `pack` raise MemoryError when realloc is failed. | INADA Naoki | 2012-12-10 | 1 | -1/+3 |
| | |||||
* | Improve docstrings. | INADA Naoki | 2012-12-10 | 1 | -4/+23 |
| | |||||
* | Split exceptions. | INADA Naoki | 2012-12-10 | 1 | -8/+16 |
| | |||||
* | Add NOTE for changing default value of use_list. | INADA Naoki | 2012-12-07 | 1 | -1/+1 |
| | |||||
* | Add Unpacker.read_bytes(). | INADA Naoki | 2012-12-06 | 1 | -0/+10 |
|\ | | | | | | | | | | | | | | | | | It reads from inner buffer without unpacking. Merge remote-tracking branch 'jnothman/patch-2' Conflicts: msgpack/_msgpack.pyx | ||||
| * | Merge commit 'd5f9995' into read_bytes | Joel Nothman | 2012-10-04 | 1 | -80/+125 |
| |\ | | | | | | | | | | | | | Conflicts: msgpack/_msgpack.pyx | ||||
| * | | Cleaner read_bytes and a test case | Joel Nothman | 2012-09-23 | 1 | -7/+5 |
| | | | | | | | | | | | | No longer reads via buffer for unbuffered bytes | ||||
| * | | Expose packed stream with Unpacker.read_bytes() | jnothman | 2012-09-21 | 1 | -0/+12 |
| | | | | | | | | | At present, Unpacker buffers reading from the stream, meaning the stream can no longer be read directly. Unpacker.read_bytes(n) provides access to the underlying data, allowing content of known size to be read without unpacking. | ||||
* | | | Merge pull request #23 from jnothman/write_bytes | INADA Naoki | 2012-12-06 | 1 | -12/+25 |
|\ \ \ | | | | | | | | | Allow packed data to be captured while executing skip(), etc. | ||||
| * | | | Allow packed data to be captured while executing skip(), etc. | Joel Nothman | 2012-10-04 | 1 | -12/+25 |
| | |/ | |/| | |||||
* | | | Fix segmentation fault. | INADA Naoki | 2012-11-07 | 1 | -1/+1 |
| | | | |||||
* | | | Fix unpack error on Python 3.2. | INADA Naoki | 2012-11-07 | 1 | -23/+35 |
|/ / | | | | | | | ctx.user.encoding and ctx.user.unicode_errors may refer to deallocated string. | ||||
* | | Merge remote-tracking branch 'jnothman/read_size_cpp' | INADA Naoki | 2012-10-01 | 1 | -12/+32 |
|\ \ | | | | | | | | | | | | | | | | Conflicts: msgpack/_msgpack.pyx setup.py | ||||
| * | | Packer.pack_array/map_header to correspond to read functions | Joel Nothman | 2012-09-25 | 1 | -0/+11 |
| | | | |||||
| * | | read_array/map_header functionality | Joel Nothman | 2012-09-25 | 1 | -0/+10 |
| | | | |||||
| * | | Use C++ function templating for skip()/construct() | Joel Nothman | 2012-09-25 | 1 | -12/+11 |
| | | | |||||
* | | | Merge branch '0.2-maint' | INADA Naoki | 2012-09-24 | 1 | -57/+51 |
|\ \ \ | | | | | | | | | | | | | | | | | Conflicts: msgpack/_msgpack.pyx | ||||
| * \ \ | Support object_pairs_hook | INADA Naoki | 2012-09-24 | 1 | -67/+71 |
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Merge remote-tracking branch 'jnothman/object_pairs_hook' into 0.2-maint Conflicts: msgpack/_msgpack.pyx test/test_pack.py test/test_sequnpack.py | ||||
| | * | | | Implement object_pairs_hook | Joel Nothman | 2012-09-23 | 1 | -8/+26 |
| | | | | | |||||
| | * | | | Factor context initialisation from unpackb and Unpacker | Joel Nothman | 2012-09-23 | 1 | -54/+28 |
| | |/ / | |||||
| * | | | Warn when use_list is not specified. | INADA Naoki | 2012-09-24 | 1 | -8/+22 |
| | | | | | | | | | | | | | | | | | | | | Conflicts: test/test_sequnpack.py | ||||
* | | | | use_list=1 is default | INADA Naoki | 2012-09-24 | 1 | -15/+4 |
| | | | | |||||
* | | | | Warn when use_list is not specified. | INADA Naoki | 2012-09-24 | 1 | -8/+22 |
| |/ / |/| | | |||||
* | | | Merge branch '0.2-maint' | INADA Naoki | 2012-09-23 | 1 | -3/+7 |
|\ \ \ | |/ / | |||||
| * | | Add docstring about raising ValueError when there are extra bytes. | INADA Naoki | 2012-09-23 | 1 | -3/+7 |
| | | | |||||
* | | | Add test for `.skip()` | INADA Naoki | 2012-09-23 | 1 | -1/+1 |
| | | | |||||
* | | | clean some cython code. | INADA Naoki | 2012-09-23 | 1 | -13/+15 |
| | | | |||||
* | | | Merge branch 'skip' of git://github.com/jnothman/msgpack-python into skip | INADA Naoki | 2012-09-23 | 1 | -8/+17 |
|\ \ \ | |/ / |/| | | |||||
| * | | Merge remote-tracking branch 'origin/master' into skip | Joel Nothman | 2012-09-22 | 1 | -21/+19 |
| |\ \ | | |/ | |||||
| * | | A first implementation of Unpacker.skip() | Joel Nothman | 2012-09-22 | 1 | -8/+17 |
| | | | |||||
* | | | pack and packb raises ValueError when extra data passed. | INADA Naoki | 2012-09-23 | 1 | -2/+5 |
| | | | |||||
* | | | Support packing subclass of dict. | INADA Naoki | 2012-09-23 | 1 | -3/+13 |
| |/ |/| | |||||
* | | 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. | ||||
* | 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 |
| | |||||
* | manage to compile on windows | INADA Naoki | 2012-06-26 | 1 | -2/+2 |
| | | | | Use C++ compiler to build. | ||||
* | Make sure objects inherited from Dict are properly casted (or else Cython ↵ | Steeve Morin | 2012-06-16 | 1 | -1/+1 |
| | | | | will complain and crash). |