Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fix typos and other cosmetic issues (#214)release-0.4 | TW | 2017-01-11 | 1 | -8/+8 |
| | | | | | | | 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 |
| | | |||||
* | | calling the default function upon integer overflow in the fallback routine | Pramukta Kumar | 2015-03-17 | 1 | -0/+4 |
|/ | |||||
* | fallback: Add some comment to Unpacker members. | INADA Naoki | 2015-01-27 | 1 | -1/+8 |
| | |||||
* | Fix #124 | Bas Westerbaan | 2015-01-26 | 1 | -1/+4 |
| | | | | | | | | | | | | When using Unpacker as an iterator, after each yield, the internal buffer (_fb_buffer) was compacted by reallocation (done by _fb_consume). When dealing with a lot of small objects, this is very ineffecient. Thus in commit 7eb371f8278941fb2323e0c2333ed89c88ab822b the pure python fallback only reallocated the complete buffer when the iteration stops. When halfway there happens to be data missing in the buffer, we rollback the buffer to the state before this failed call, and raise an OutOfData. This rollback, done by _fb_rollback, did not consider the possibility that the buffer was *not* reallocated. This commit corrects that. | ||||
* | Add max_<type>_len option to unpacker. (fixes #97). | INADA Naoki | 2015-01-25 | 1 | -29/+98 |
| | | | | Fix build error on 32bit environment (fixes #102). | ||||
* | add support for pypy3 | Xiaojie Lin | 2014-11-14 | 1 | -1/+4 |
| | |||||
* | 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 size limit on pack_array_header and pack_map_header. | INADA Naoki | 2014-03-26 | 1 | -0/+4 |
| | |||||
* | 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 |
| | | |||||
* | | Always raise TypeError for wrong argument types | Wouter Bolsterlee | 2014-02-11 | 1 | -7/+7 |
|/ | | | | | | | 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). | ||||
* | fallback: support packing ExtType | INADA Naoki | 2013-10-21 | 1 | -76/+105 |
| | |||||
* | fallback: Support pack_ext_type. | INADA Naoki | 2013-10-20 | 1 | -7/+39 |
| | |||||
* | code refactoring. | INADA Naoki | 2013-10-20 | 1 | -17/+14 |
| | |||||
* | Add ext type support to fallback.Unpacker. | INADA Naoki | 2013-10-17 | 1 | -16/+56 |
| | |||||
* | Add bin type support for fallback Unpacker. | INADA Naoki | 2013-10-17 | 1 | -0/+19 |
| | |||||
* | Add bin type support to pure Python packer. | INADA Naoki | 2013-10-17 | 1 | -8/+24 |
| | |||||
* | refactoring. | INADA Naoki | 2013-10-17 | 1 | -17/+0 |
| | |||||
* | fix more comment typos | YAMAMOTO Takashi | 2013-05-07 | 1 | -1/+1 |
| | |||||
* | fix a typo in a comment | YAMAMOTO Takashi | 2013-05-01 | 1 | -1/+1 |
| | |||||
* | better packer docstring | INADA Naoki | 2013-02-26 | 1 | -0/+24 |
| | |||||
* | fallback: refactor | INADA Naoki | 2013-02-25 | 1 | -32/+30 |
| | |||||
* | Revert skipping reserved byte. | INADA Naoki | 2013-02-23 | 1 | -6/+3 |
| | |||||
* | Fix exception incompatibility. | INADA Naoki | 2013-02-22 | 1 | -1/+4 |
| | |||||
* | Fix easy bug. | INADA Naoki | 2013-02-21 | 1 | -1/+1 |
| | |||||
* | skip reserved byte. | INADA Naoki | 2013-02-21 | 1 | -2/+12 |
| | |||||
* | On PyPy, preallocate lists | Alex Gaynor | 2013-02-16 | 1 | -1/+3 |
| | | | When deserealizing arrays, preallocate the resulting list at the correct size. | ||||
* | Use _private names for non public data members. (fix #44) | INADA Naoki | 2013-02-04 | 1 | -75/+76 |
| | |||||
* | Fix minor bugs and tuning unpacking dict. | INADA Naoki | 2013-02-03 | 1 | -9/+16 |
| | |||||
* | fallback: Support Python 3. | INADA Naoki | 2013-01-29 | 1 | -20/+34 |
| | |||||
* | pep8 friendly. | INADA Naoki | 2013-01-29 | 1 | -17/+29 |
| | |||||
* | fallback: _fb_read: add fast-path | Bas Westerbaan | 2013-01-29 | 1 | -0/+5 |
| | |||||
* | Revert "fallback: Use mmap objects instead of strings to unpack" | Bas Westerbaan | 2013-01-29 | 1 | -51/+29 |
| | | | | | | See next commit. This reverts commit 770fed6b7f1ce1f6e9c20881897a417680c8b79a. | ||||
* | fallback: Use mmap objects instead of strings to unpack | Bas Westerbaan | 2013-01-29 | 1 | -29/+51 |
| | | | | Signed-off-by: Bas Westerbaan <bas@westerbaan.name> | ||||
* | fallback: add actual rollback and add a testcase for it | Bas Westerbaan | 2013-01-29 | 1 | -8/+13 |
| | | | | Signed-off-by: Bas Westerbaan <bas@westerbaan.name> | ||||
* | fallback: bugfix in next() | Bas Westerbaan | 2013-01-29 | 1 | -1/+1 |
| | |||||
* | fallback: do not use dynamic format strings for struct.(un)pack | Bas Westerbaan | 2013-01-29 | 1 | -5/+7 |
| | | | | Increases performance on PyPy. | ||||
* | fallback: performance: write(a+b) -> write(a); write(b) | Bas Westerbaan | 2013-01-29 | 1 | -1/+2 |
| | |||||
* | fallback: two fixes for raising ExtraData | Bas Westerbaan | 2013-01-28 | 1 | -8/+17 |
| | |||||
* | fallback: use __pypy__.builders.StringBuilder when available | Bas Westerbaan | 2013-01-28 | 1 | -10/+36 |
| | | | | | | This increases performance *a lot* on PyPy. Signed-off-by: Bas Westerbaan <bas@westerbaan.name> |