Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fix typos and other cosmetic issues (#214)release-0.4 | TW | 2017-01-11 | 1 | -1/+1 |
| | | | | | | | cosmetic issues: - reST headlines' underline length needs to match the headline length (looks like somebody is / was using a proportional font) - Cython code lines do not need to be terminated with a semicolon - always use triple-double-quotes for docstrings | ||||
* | Merge pull request #163 from ThomasWaldmann/master | INADA Naoki | 2015-12-10 | 1 | -1/+1 |
|\ | | | | | fix typos | ||||
| * | fix typos | Thomas Waldmann | 2015-12-09 | 1 | -1/+1 |
| | | |||||
* | | Fix compile error | INADA Naoki | 2015-11-09 | 1 | -1/+0 |
| | | |||||
* | | Add missing params to unpack() | INADA Naoki | 2015-11-09 | 1 | -2/+12 |
| | | |||||
* | | Decrease refcnt when error happend while unpacking | INADA Naoki | 2015-11-08 | 1 | -2/+3 |
| | | | | | | | | Fixes #152 | ||||
* | | Fix warnings | INADA Naoki | 2015-11-07 | 1 | -12/+12 |
|/ | | | | fixes #146 | ||||
* | Accept ext_hook for unpack() | Johannes Dollinger | 2015-07-27 | 1 | -2/+2 |
| | |||||
* | Fix error when use unicode_literal in Python 2 | INADA Naoki | 2015-01-25 | 1 | -3/+7 |
| | |||||
* | Add max_<type>_len option to unpacker. (fixes #97). | INADA Naoki | 2015-01-25 | 1 | -12/+48 |
| | | | | Fix build error on 32bit environment (fixes #102). | ||||
* | Unpacker's ext_hook fixed + tests | Alexey Popravka | 2014-03-24 | 1 | -1/+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 |
| | |||||
* | Merge pull request #84 from wbolster/exception-type-cleanups | INADA Naoki | 2014-02-13 | 1 | -2/+2 |
|\ | | | | | Always raise TypeError for wrong argument types | ||||
| * | Always raise TypeError for wrong argument types | Wouter Bolsterlee | 2014-02-11 | 1 | -2/+2 |
| | | | | | | | | | | | | | | 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. | ||||
* | Packing ExtType and some cleanup | INADA Naoki | 2013-10-20 | 1 | -36/+13 |
| | |||||
* | fallback: Support pack_ext_type. | INADA Naoki | 2013-10-20 | 1 | -2/+0 |
| | |||||
* | Merge branch 'master' of https://github.com/antocuni/msgpack-python into newspec | INADA Naoki | 2013-10-20 | 1 | -2/+37 |
|\ | | | | | | | | | | | | | | | Conflicts: msgpack/fallback.py msgpack/unpack.h msgpack/unpack_define.h msgpack/unpack_template.h | ||||
| * | implement unpacking for all the fixtext formats | Antonio Cuni | 2013-10-19 | 1 | -2/+19 |
| | | |||||
| * | implement unpack_one also for the cython version, and add a test for it | Antonio Cuni | 2013-10-19 | 1 | -0/+18 |
| | | |||||
* | | Add bin type support for fallback Unpacker. | INADA Naoki | 2013-10-17 | 1 | -1/+0 |
|/ | |||||
* | fix compilation errors | YAMAMOTO Takashi | 2013-06-03 | 1 | -2/+2 |
| | |||||
* | Stop using const_void_ptr typedef. | INADA Naoki | 2013-05-19 | 1 | -3/+2 |
| | | | | New Cython supports const natively. | ||||
* | Revert "Use new buffer interface." | INADA Naoki | 2013-05-19 | 1 | -25/+28 |
| | | | | | | | This reverts commit 085db7f8dca2b4e2497bfb291238cd3ff2d06e28. Conflicts: msgpack/_unpacker.pyx | ||||
* | fix a compilation error | YAMAMOTO Takashi | 2013-05-16 | 1 | -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*' | ||||
* | Use new buffer interface. | INADA Naoki | 2013-04-08 | 1 | -28/+25 |
| | |||||
* | Unpacker.feed() uses new buffer interface. | INADA Naoki | 2013-04-08 | 1 | -4/+6 |
| | |||||
* | Remove unnecessary type declaration. | INADA Naoki | 2013-04-08 | 1 | -2/+1 |
| | |||||
* | remove some macros. | INADA Naoki | 2013-02-27 | 1 | -17/+17 |
| | |||||
* | Fix typeerror. | INADA Naoki | 2013-02-26 | 1 | -6/+8 |
| | |||||
* | docs: better unpacker docstring. | INADA Naoki | 2013-02-26 | 1 | -24/+40 |
| | |||||
* | Fix exception incompatibility. | INADA Naoki | 2013-02-22 | 1 | -3/+1 |
| | |||||
* | Fix unpacker doesn't raise exception for invalid input (Merge branch '0.2' | INADA Naoki | 2012-12-29 | 1 | -1/+3 |
| | | | | | | | | | Fixes #40 Conflicts: ChangeLog.rst msgpack/_unpacker.pyx msgpack/_version.py | ||||
* | Split _msgpack.pyx | INADA Naoki | 2012-12-11 | 1 | -0/+382 |