summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * Add ext_type example to README.INADA Naoki2013-10-201-4/+21
| |
| * cleanupINADA Naoki2013-10-203-4/+2
| |
| * Support unpacking new types.INADA Naoki2013-10-204-11/+17
| |
| * Packing ExtType and some cleanupINADA Naoki2013-10-207-170/+132
| |
| * fallback: Support pack_ext_type.INADA Naoki2013-10-204-23/+53
| |
| * Merge branch 'master' of https://github.com/antocuni/msgpack-python into newspecINADA Naoki2013-10-2011-41/+261
| |\ | | | | | | | | | | | | | | | | | | | | | Conflicts: msgpack/fallback.py msgpack/unpack.h msgpack/unpack_define.h msgpack/unpack_template.h
| | * add a note in the READMEAntonio Cuni2013-10-191-0/+8
| | |
| | * implement unpacking of ext 8,16,32Antonio Cuni2013-10-192-14/+24
| | |
| | * implement unpacking for all the fixtext formatsAntonio Cuni2013-10-196-15/+62
| | |
| | * add a test for unpacking extended typesAntonio Cuni2013-10-191-0/+22
| | |
| | * implement unpack_one also for the cython version, and add a test for itAntonio Cuni2013-10-192-1/+32
| | |
| | * add the hook for unknown types also to the cython PackerAntonio Cuni2013-10-181-0/+6
| | |
| | * implement Packer.pack_extended_type also in the cython version of the codeAntonio Cuni2013-10-184-1/+69
| | |
| | * add support to unpack all ext formatsAntonio Cuni2013-10-181-1/+27
| | |
| | * automatically find the best format to encode extended typesAntonio Cuni2013-10-182-8/+38
| | |
| | * slightly change to APIAntonio Cuni2013-10-182-19/+14
| | |
| | * kill some duplicate code from unpack/unpackb and move the logic to ↵Antonio Cuni2013-10-182-51/+52
| | | | | | | | | | | | Unpacker.unpack_one. By doing this we no longer need to make the module-level pack/unpack parametric on the class, because they contain no logic at all
| | * add support for extended types: you can now pack/unpack custom python ↵Antonio Cuni2013-10-152-47/+108
| | | | | | | | | | | | objects by subclassing Packer and Unpacker
* | | Merge pull request #77 from msgpack/newspecINADA Naoki2013-10-1910-93/+268
|\ \ \ | |/ / | | / | |/ |/| [WIP] Support new spec.
| * code refactoring.INADA Naoki2013-10-201-17/+14
| |
| * Add ext type support to fallback.Unpacker.INADA Naoki2013-10-172-16/+60
| |
| * Add tests for str8 and bin types.INADA Naoki2013-10-171-0/+69
| |
| * Add bin type support for fallback Unpacker.INADA Naoki2013-10-173-2/+20
| |
| * Add bin type support to pure Python packer.INADA Naoki2013-10-172-9/+25
| |
| * refactoring.INADA Naoki2013-10-173-45/+21
| |
| * Add bin type support.INADA Naoki2013-10-176-26/+81
|/
* Merge pull request #72 from lgov/masterINADA Naoki2013-09-131-1/+1
|\ | | | | * msgpack/exceptions.py: Fix typo in error message.
| * * msgpack/exceptions.py: Fix typo in error message.Lieven Govaerts2013-09-131-1/+1
|/
* Merge pull request #66 from yamt/fixesINADA Naoki2013-06-043-6/+7
|\ | | | | some fixes and tests
| * more testsYAMAMOTO Takashi2013-06-031-2/+3
| |
| * fix long vs long long bugsYAMAMOTO Takashi2013-06-031-2/+2
| | | | | | | | | | these bugs were introduced by "fix long/int confusions in pyx version of unpack" commit.
| * fix compilation errorsYAMAMOTO Takashi2013-06-031-2/+2
|/
* Merge pull request #65 from msgpack/old-bufferINADA Naoki2013-05-182-26/+28
|\ | | | | Stop using new style buffer API.
| * Stop using const_void_ptr typedef.INADA Naoki2013-05-191-3/+2
| | | | | | | | New Cython supports const natively.
| * Revert "Use new buffer interface."INADA Naoki2013-05-191-25/+28
| | | | | | | | | | | | | | This reverts commit 085db7f8dca2b4e2497bfb291238cd3ff2d06e28. Conflicts: msgpack/_unpacker.pyx
| * Use --cplus for cythoningINADA Naoki2013-05-191-1/+1
|/
* fix a compilation errorYAMAMOTO Takashi2013-05-161-1/+1
| | | | | | | msgpack/_unpacker.pyx: In function 'PyObject* __pyx_pf_7msgpack_9_unpacker_unpac kb(PyObject*, PyObject*, PyObject*, PyObject*, int, PyObject*, PyObject*, PyObje ct*)': msgpack/_unpacker.pyx:111:70: error: invalid cast from type 'Py_buffer' to type 'char*'
* fix long/int confusions in pyx version of unpackYAMAMOTO Takashi2013-05-161-4/+12
|
* Merge pull request #63 from yamt/typoINADA Naoki2013-05-062-2/+2
|\ | | | | fix more comment typos
| * fix more comment typosYAMAMOTO Takashi2013-05-072-2/+2
|/
* Merge pull request #62 from yamt/comment-typoINADA Naoki2013-05-011-1/+1
|\ | | | | fix a typo in a comment
| * fix a typo in a commentYAMAMOTO Takashi2013-05-011-1/+1
|/
* Merge pull request #60 from jnothman/patch-2INADA Naoki2013-04-121-3/+0
|\ | | | | Remove obsolete StopIteration warning
| * Remove obsolete StopIteration warningjnothman2013-04-101-3/+0
|/
* Merge pull request #59 from msgpack/refactorINADA Naoki2013-04-071-32/+31
|\ | | | | Use new style buffer interface.
| * Use new buffer interface.INADA Naoki2013-04-081-28/+25
| |
| * Unpacker.feed() uses new buffer interface.INADA Naoki2013-04-081-4/+6
| |
* | Merge pull request #58 from msgpack/refactorINADA Naoki2013-04-072-8/+1
|\ \ | |/ | | Remove unnecessary type declaration.
| * Remove unnecessary type declaration.INADA Naoki2013-04-082-8/+1
|/
* Add build batch for WindowsINADA Naoki2013-03-132-0/+28
|