summaryrefslogtreecommitdiff
path: root/msgpack
Commit message (Collapse)AuthorAgeFilesLines
...
| * 0.2.40.2.4INADA Naoki2012-12-221-1/+1
| |
* | Merge branch '0.2-maint' (fix #39)INADA Naoki2012-12-221-1/+1
|\ \ | |/
| * Check return value of _end functions.INADA Naoki2012-12-221-3/+3
| |
| * Add NULL check.INADA Naoki2012-12-221-0/+3
| |
| * prepare 0.2.3INADA Naoki2012-12-111-1/+1
| |
| * Fix tests.INADA Naoki2012-12-111-26/+36
| |
* | Split _msgpack.pyxINADA Naoki2012-12-114-373/+392
| |
* | rename _msgpack.pyx => _packer.pyxINADA Naoki2012-12-112-1/+2
| |
* | Add `autoreset` option to Packer.INADA Naoki2012-12-101-12/+36
| |
* | Add `Packer.pack_pairs`.INADA Naoki2012-12-101-4/+35
| |
* | refactoring: remove pack_define.hINADA Naoki2012-12-102-27/+2
| |
* | Remove unused UnpackException.INADA Naoki2012-12-101-1/+0
| |
* | Improve docstring.INADA Naoki2012-12-101-8/+4
| |
* | `pack` raise MemoryError when realloc is failed.INADA Naoki2012-12-101-1/+3
| |
* | Improve docstrings.INADA Naoki2012-12-101-4/+23
| |
* | Split exceptions.INADA Naoki2012-12-102-8/+39
| |
* | Add NOTE for changing default value of use_list.INADA Naoki2012-12-071-1/+1
| |
* | Add Unpacker.read_bytes().INADA Naoki2012-12-061-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_bytesJoel Nothman2012-10-044-106/+236
| |\ \ | | | | | | | | | | | | | | | | Conflicts: msgpack/_msgpack.pyx
| * | | Cleaner read_bytes and a test caseJoel Nothman2012-09-231-7/+5
| | | | | | | | | | | | | | | | No longer reads via buffer for unbuffered bytes
| * | | Expose packed stream with Unpacker.read_bytes()jnothman2012-09-211-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_bytesINADA Naoki2012-12-061-12/+25
|\ \ \ \ | | | | | | | | | | Allow packed data to be captured while executing skip(), etc.
| * | | | Allow packed data to be captured while executing skip(), etc.Joel Nothman2012-10-041-12/+25
| | |/ / | |/| |
* | | | Fix segmentation fault.INADA Naoki2012-11-071-1/+1
| | | |
* | | | Fix unpack error on Python 3.2.INADA Naoki2012-11-071-23/+35
| | | | | | | | | | | | | | | | ctx.user.encoding and ctx.user.unicode_errors may refer to deallocated string.
* | | | segfault fixed when data is unpacked using `list_hook`,Alexei Romanoff2012-10-122-1/+3
| | | | | | | | | | | | | | | | | | | | this bug is a twin to #28. Unit-test is also attached.
* | | | A segfault fixed in the issue ↵Alexei Romanoff2012-10-122-1/+4
|/ / / | | | | | | | | | https://github.com/msgpack/msgpack-python/issues/28
* | | Merge remote-tracking branch 'jnothman/read_size_cpp'INADA Naoki2012-10-013-20/+109
|\ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: msgpack/_msgpack.pyx setup.py
| * | | Packer.pack_array/map_header to correspond to read functionsJoel Nothman2012-09-251-0/+11
| | | |
| * | | read_array/map_header functionalityJoel Nothman2012-09-252-0/+73
| | | |
| * | | Use C++ function templating for skip()/construct()Joel Nothman2012-09-253-20/+25
| | | |
* | | | Merge branch '0.2-maint'INADA Naoki2012-09-243-67/+73
|\ \ \ \ | | |_|/ | |/| | | | | | | | | | Conflicts: msgpack/_msgpack.pyx
| * | | Support object_pairs_hookINADA Naoki2012-09-243-86/+106
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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_hookJoel Nothman2012-09-233-18/+48
| | | | |
| | * | | Factor context initialisation from unpackb and UnpackerJoel Nothman2012-09-231-54/+28
| | |/ /
* | | | Start 0.3.0dev1INADA Naoki2012-09-241-1/+1
|\ \ \ \ | |/ / /
| * | | Start 0.2.3devINADA Naoki2012-09-241-1/+1
| | | |
| * | | Warn when use_list is not specified.INADA Naoki2012-09-241-8/+22
| | | | | | | | | | | | | | | | | | | | Conflicts: test/test_sequnpack.py
* | | | use_list=1 is defaultINADA Naoki2012-09-241-15/+4
| | | |
* | | | Warn when use_list is not specified.INADA Naoki2012-09-241-8/+22
| |/ / |/| |
* | | Merge branch '0.2-maint'INADA Naoki2012-09-231-3/+7
|\ \ \ | |/ /
| * | Add docstring about raising ValueError when there are extra bytes.INADA Naoki2012-09-231-3/+7
| | |
* | | Add test for `.skip()`INADA Naoki2012-09-231-1/+1
| | |
* | | clean some cython code.INADA Naoki2012-09-232-14/+16
| | |
* | | Merge branch 'skip' of git://github.com/jnothman/msgpack-python into skipINADA Naoki2012-09-232-18/+31
|\ \ \ | |/ / |/| |
| * | Merge remote-tracking branch 'origin/master' into skipJoel Nothman2012-09-222-22/+20
| |\ \ | | |/
| * | A first implementation of Unpacker.skip()Joel Nothman2012-09-222-18/+31
| | |
* | | pack and packb raises ValueError when extra data passed.INADA Naoki2012-09-231-2/+5
| | |
* | | Support packing subclass of dict.INADA Naoki2012-09-231-3/+13
| |/ |/|
* | 0.2.2 (again)0.2.2INADA Naoki2012-09-211-1/+1
| |