Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix build failuer for Python 2.7 on Windows.fix-windows | INADA Naoki | 2015-01-07 | 2 | -3/+2 |
| | | | | Remove int8_t usage. | ||||
* | add support for pypy3 | Xiaojie Lin | 2014-11-14 | 1 | -1/+4 |
| | |||||
* | Fix build and tests. | INADA Naoki | 2014-08-31 | 1 | -9/+1 |
| | |||||
* | fallback: fix BufferFull with sloppy consume | Bas Westerbaan | 2014-06-15 | 1 | -1/+12 |
| | |||||
* | fallback: _fb_read: do a big read, when we need a big read | Bas Westerbaan | 2014-06-14 | 1 | -2/+5 |
| | |||||
* | fallback: add some comments to _fb_read | Bas Westerbaan | 2014-06-14 | 1 | -0/+4 |
| | |||||
* | fallback: do not reset the buffer completely in between of iterations | Bas Westerbaan | 2014-06-14 | 1 | -1/+11 |
| | |||||
* | fallback: _fb_consume: improve performance with pypy | Bas Westerbaan | 2014-06-14 | 1 | -3/+8 |
| | |||||
* | fallback: set default read_size to 4096 | Bas Westerbaan | 2014-06-14 | 1 | -1/+1 |
| | |||||
* | fallback: add missing update of _fb_buf_n | Bas Westerbaan | 2014-06-14 | 1 | -0/+1 |
| | |||||
* | Fix unpacking uint32 on 32bit or LLP64. | INADA Naoki | 2014-05-26 | 1 | -1/+1 |
| | |||||
* | 0.4.20.4.2 | INADA Naoki | 2014-03-26 | 1 | -1/+1 |
| | |||||
* | Merge pull request #94 from msgpack/strict-input-check | INADA Naoki | 2014-03-26 | 2 | -4/+30 |
|\ | | | | | Add tests for limits. | ||||
| * | Fix size limit on pack_array_header and pack_map_header. | INADA Naoki | 2014-03-26 | 2 | -2/+6 |
| | | |||||
| * | Add check for format limits. | INADA Naoki | 2014-03-26 | 1 | -4/+26 |
| | | |||||
* | | Unpacker's ext_hook fixed + tests | Alexey Popravka | 2014-03-24 | 1 | -1/+2 |
|/ | |||||
* | 0.4.10.4.1 | INADA Naoki | 2014-02-17 | 1 | -1/+1 |
| | |||||
* | Merge branch 'pr/82' | INADA Naoki | 2014-02-17 | 1 | -0/+2 |
|\ | |||||
| * | fix | INADA Naoki | 2014-02-17 | 1 | -1/+1 |
| | | |||||
| * | fixed support of python3 | Sergey Zhuravlev | 2014-02-12 | 1 | -1/+1 |
| | | |||||
| * | Added support of bytearrays to msgpack/fallback.py | Sergey Zhuravlev | 2013-12-15 | 1 | -0/+2 |
| | | |||||
* | | Unpacker: maintain refcnt (fix #67). | INADA Naoki | 2014-02-13 | 1 | -1/+6 |
| | | |||||
* | | Feed data from file before _unpack() | INADA Naoki | 2014-02-13 | 1 | -0/+10 |
| | | |||||
* | | Fix warning on 64bit environment. | INADA Naoki | 2014-02-13 | 1 | -1/+4 |
| | | |||||
* | | Merge pull request #84 from wbolster/exception-type-cleanups | INADA Naoki | 2014-02-13 | 2 | -9/+9 |
|\ \ | | | | | | | Always raise TypeError for wrong argument types | ||||
| * | | Always raise TypeError for wrong argument types | Wouter Bolsterlee | 2014-02-11 | 2 | -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 warnings | Wouter Bolsterlee | 2014-02-11 | 1 | -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 Naoki | 2013-10-21 | 1 | -0/+1 |
| | |||||
* | 0.4.00.4.0 | INADA Naoki | 2013-10-21 | 1 | -1/+1 |
| | |||||
* | fix bugs. | INADA Naoki | 2013-10-21 | 2 | -17/+5 |
| | |||||
* | fallback: support packing ExtType | INADA Naoki | 2013-10-21 | 3 | -81/+131 |
| | |||||
* | Add tests and bugfix. | INADA Naoki | 2013-10-21 | 2 | -3/+4 |
| | |||||
* | cleanup | INADA Naoki | 2013-10-20 | 1 | -1/+1 |
| | |||||
* | Support unpacking new types. | INADA Naoki | 2013-10-20 | 3 | -10/+16 |
| | |||||
* | Packing ExtType and some cleanup | INADA Naoki | 2013-10-20 | 5 | -116/+98 |
| | |||||
* | fallback: Support pack_ext_type. | INADA Naoki | 2013-10-20 | 3 | -10/+40 |
| | |||||
* | Merge branch 'master' of https://github.com/antocuni/msgpack-python into newspec | INADA Naoki | 2013-10-20 | 7 | -40/+174 |
|\ | | | | | | | | | | | | | | | Conflicts: msgpack/fallback.py msgpack/unpack.h msgpack/unpack_define.h msgpack/unpack_template.h | ||||
| * | implement unpacking of ext 8,16,32 | Antonio Cuni | 2013-10-19 | 2 | -14/+24 |
| | | |||||
| * | implement unpacking for all the fixtext formats | Antonio Cuni | 2013-10-19 | 4 | -15/+60 |
| | | |||||
| * | implement unpack_one also for the cython version, and add a test for it | Antonio Cuni | 2013-10-19 | 1 | -0/+18 |
| | | |||||
| * | add the hook for unknown types also to the cython Packer | Antonio Cuni | 2013-10-18 | 1 | -0/+6 |
| | | |||||
| * | implement Packer.pack_extended_type also in the cython version of the code | Antonio Cuni | 2013-10-18 | 3 | -0/+68 |
| | | |||||
| * | add support to unpack all ext formats | Antonio Cuni | 2013-10-18 | 1 | -1/+27 |
| | | |||||
| * | automatically find the best format to encode extended types | Antonio Cuni | 2013-10-18 | 1 | -6/+22 |
| | | |||||
| * | slightly change to API | Antonio Cuni | 2013-10-18 | 1 | -16/+10 |
| | | |||||
| * | kill some duplicate code from unpack/unpackb and move the logic to ↵ | Antonio Cuni | 2013-10-18 | 1 | -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 Cuni | 2013-10-15 | 1 | -47/+84 |
| | | | | | | | | objects by subclassing Packer and Unpacker | ||||
* | | code refactoring. | INADA Naoki | 2013-10-20 | 1 | -17/+14 |
| | | |||||
* | | Add ext type support to fallback.Unpacker. | INADA Naoki | 2013-10-17 | 2 | -16/+60 |
| | | |||||
* | | Add bin type support for fallback Unpacker. | INADA Naoki | 2013-10-17 | 3 | -2/+20 |
| | |