summaryrefslogtreecommitdiff
path: root/msgpack
Commit message (Collapse)AuthorAgeFilesLines
* Fix build failuer for Python 2.7 on Windows.fix-windowsINADA Naoki2015-01-072-3/+2
| | | | Remove int8_t usage.
* add support for pypy3Xiaojie Lin2014-11-141-1/+4
|
* Fix build and tests.INADA Naoki2014-08-311-9/+1
|
* fallback: fix BufferFull with sloppy consumeBas Westerbaan2014-06-151-1/+12
|
* fallback: _fb_read: do a big read, when we need a big readBas Westerbaan2014-06-141-2/+5
|
* fallback: add some comments to _fb_readBas Westerbaan2014-06-141-0/+4
|
* fallback: do not reset the buffer completely in between of iterationsBas Westerbaan2014-06-141-1/+11
|
* fallback: _fb_consume: improve performance with pypyBas Westerbaan2014-06-141-3/+8
|
* fallback: set default read_size to 4096Bas Westerbaan2014-06-141-1/+1
|
* fallback: add missing update of _fb_buf_nBas Westerbaan2014-06-141-0/+1
|
* Fix unpacking uint32 on 32bit or LLP64.INADA Naoki2014-05-261-1/+1
|
* 0.4.20.4.2INADA Naoki2014-03-261-1/+1
|
* Merge pull request #94 from msgpack/strict-input-checkINADA Naoki2014-03-262-4/+30
|\ | | | | Add tests for limits.
| * Fix size limit on pack_array_header and pack_map_header.INADA Naoki2014-03-262-2/+6
| |
| * Add check for format limits.INADA Naoki2014-03-261-4/+26
| |
* | Unpacker's ext_hook fixed + testsAlexey Popravka2014-03-241-1/+2
|/
* 0.4.10.4.1INADA Naoki2014-02-171-1/+1
|
* Merge branch 'pr/82'INADA Naoki2014-02-171-0/+2
|\
| * fixINADA Naoki2014-02-171-1/+1
| |
| * fixed support of python3Sergey Zhuravlev2014-02-121-1/+1
| |
| * Added support of bytearrays to msgpack/fallback.pySergey Zhuravlev2013-12-151-0/+2
| |
* | Unpacker: maintain refcnt (fix #67).INADA Naoki2014-02-131-1/+6
| |
* | Feed data from file before _unpack()INADA Naoki2014-02-131-0/+10
| |
* | Fix warning on 64bit environment.INADA Naoki2014-02-131-1/+4
| |
* | Merge pull request #84 from wbolster/exception-type-cleanupsINADA Naoki2014-02-132-9/+9
|\ \ | | | | | | Always raise TypeError for wrong argument types
| * | Always raise TypeError for wrong argument typesWouter Bolsterlee2014-02-112-9/+9
| |/ | | | | | | | | | | | | The code that checks whether hooks are callable() (and some other type checks) should always raise TypeError on failure. Before this change, both ValueError and TypeError were used in an inconsistent way (C extension and Python implementation were not the same).
* | Cosmetic changes to fix Cython warningsWouter Bolsterlee2014-02-111-1/+2
|/ | | | | | | | Put declarations on separate line to avoid warnings like this: Non-trivial type declarators in shared declaration (e.g. mix of pointers and values). Each pointer declaration should be on its own line.
* Document update.INADA Naoki2013-10-211-0/+1
|
* 0.4.00.4.0INADA Naoki2013-10-211-1/+1
|
* fix bugs.INADA Naoki2013-10-212-17/+5
|
* fallback: support packing ExtTypeINADA Naoki2013-10-213-81/+131
|
* Add tests and bugfix.INADA Naoki2013-10-212-3/+4
|
* cleanupINADA Naoki2013-10-201-1/+1
|
* Support unpacking new types.INADA Naoki2013-10-203-10/+16
|
* Packing ExtType and some cleanupINADA Naoki2013-10-205-116/+98
|
* fallback: Support pack_ext_type.INADA Naoki2013-10-203-10/+40
|
* Merge branch 'master' of https://github.com/antocuni/msgpack-python into newspecINADA Naoki2013-10-207-40/+174
|\ | | | | | | | | | | | | | | Conflicts: msgpack/fallback.py msgpack/unpack.h msgpack/unpack_define.h msgpack/unpack_template.h
| * implement unpacking of ext 8,16,32Antonio Cuni2013-10-192-14/+24
| |
| * implement unpacking for all the fixtext formatsAntonio Cuni2013-10-194-15/+60
| |
| * implement unpack_one also for the cython version, and add a test for itAntonio Cuni2013-10-191-0/+18
| |
| * 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-183-0/+68
| |
| * add support to unpack all ext formatsAntonio Cuni2013-10-181-1/+27
| |
| * automatically find the best format to encode extended typesAntonio Cuni2013-10-181-6/+22
| |
| * slightly change to APIAntonio Cuni2013-10-181-16/+10
| |
| * kill some duplicate code from unpack/unpackb and move the logic to ↵Antonio Cuni2013-10-181-48/+47
| | | | | | | | 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-151-47/+84
| | | | | | | | objects by subclassing Packer and Unpacker
* | code refactoring.INADA Naoki2013-10-201-17/+14
| |
* | Add ext type support to fallback.Unpacker.INADA Naoki2013-10-172-16/+60
| |
* | Add bin type support for fallback Unpacker.INADA Naoki2013-10-173-2/+20
| |