summaryrefslogtreecommitdiff
path: root/msgpack/fallback.py
Commit message (Collapse)AuthorAgeFilesLines
...
* | 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 size limit on pack_array_header and pack_map_header.INADA Naoki2014-03-261-0/+4
|
* 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
| |
* | Always raise TypeError for wrong argument typesWouter Bolsterlee2014-02-111-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 ExtTypeINADA Naoki2013-10-211-76/+105
|
* fallback: Support pack_ext_type.INADA Naoki2013-10-201-7/+39
|
* code refactoring.INADA Naoki2013-10-201-17/+14
|
* Add ext type support to fallback.Unpacker.INADA Naoki2013-10-171-16/+56
|
* Add bin type support for fallback Unpacker.INADA Naoki2013-10-171-0/+19
|
* Add bin type support to pure Python packer.INADA Naoki2013-10-171-8/+24
|
* refactoring.INADA Naoki2013-10-171-17/+0
|
* fix more comment typosYAMAMOTO Takashi2013-05-071-1/+1
|
* fix a typo in a commentYAMAMOTO Takashi2013-05-011-1/+1
|
* better packer docstringINADA Naoki2013-02-261-0/+24
|
* fallback: refactorINADA Naoki2013-02-251-32/+30
|
* Revert skipping reserved byte.INADA Naoki2013-02-231-6/+3
|
* Fix exception incompatibility.INADA Naoki2013-02-221-1/+4
|
* Fix easy bug.INADA Naoki2013-02-211-1/+1
|
* skip reserved byte.INADA Naoki2013-02-211-2/+12
|
* On PyPy, preallocate listsAlex Gaynor2013-02-161-1/+3
| | | When deserealizing arrays, preallocate the resulting list at the correct size.
* Use _private names for non public data members. (fix #44)INADA Naoki2013-02-041-75/+76
|
* Fix minor bugs and tuning unpacking dict.INADA Naoki2013-02-031-9/+16
|
* fallback: Support Python 3.INADA Naoki2013-01-291-20/+34
|
* pep8 friendly.INADA Naoki2013-01-291-17/+29
|
* fallback: _fb_read: add fast-pathBas Westerbaan2013-01-291-0/+5
|
* Revert "fallback: Use mmap objects instead of strings to unpack"Bas Westerbaan2013-01-291-51/+29
| | | | | | See next commit. This reverts commit 770fed6b7f1ce1f6e9c20881897a417680c8b79a.
* fallback: Use mmap objects instead of strings to unpackBas Westerbaan2013-01-291-29/+51
| | | | Signed-off-by: Bas Westerbaan <bas@westerbaan.name>
* fallback: add actual rollback and add a testcase for itBas Westerbaan2013-01-291-8/+13
| | | | Signed-off-by: Bas Westerbaan <bas@westerbaan.name>
* fallback: bugfix in next()Bas Westerbaan2013-01-291-1/+1
|
* fallback: do not use dynamic format strings for struct.(un)packBas Westerbaan2013-01-291-5/+7
| | | | Increases performance on PyPy.
* fallback: performance: write(a+b) -> write(a); write(b)Bas Westerbaan2013-01-291-1/+2
|
* fallback: two fixes for raising ExtraDataBas Westerbaan2013-01-281-8/+17
|
* fallback: use __pypy__.builders.StringBuilder when availableBas Westerbaan2013-01-281-10/+36
| | | | | | This increases performance *a lot* on PyPy. Signed-off-by: Bas Westerbaan <bas@westerbaan.name>
* Add pure Python fallback moduleBas Westerbaan2013-01-281-0/+476
Signed-off-by: Bas Westerbaan <bas@westerbaan.name>