summaryrefslogtreecommitdiff
path: root/msgpack/fallback.py
Commit message (Expand)AuthorAgeFilesLines
* Remove deprecated exception classesINADA Naoki2018-11-091-40/+37
* PendingDeprecationWarning -> DeprecationWarning (#321)INADA Naoki2018-11-091-3/+3
* Add Packer.buffer() (#320)INADA Naoki2018-11-091-16/+20
* unpacker: Make default size limit smaller (#319)INADA Naoki2018-11-081-9/+11
* Alternate fixes for jython and legacy CPython (#310)Raymond E Ferguson2018-10-021-39/+35
* fallback: Fix error on JythonInada Naoki2018-06-271-0/+7
* Fix TypeError in fallback.unpack() on <Python 2.7.6Alex Gaynor2018-04-161-25/+31
* Deprecate implementation module's unpack() (#290)INADA Naoki2018-02-231-16/+5
* Fix Unpacker.feed() drops unused data in buffer. (#289)INADA Naoki2018-02-231-2/+7
* Revert "Move unpack() from each implementation to __init__. (#286)"INADA Naoki2018-02-231-0/+10
* Move unpack() from each implementation to __init__. (#286)INADA Naoki2018-02-221-10/+0
* Fix memory leak in pure Python Unpacker.feed() (#284)INADA Naoki2018-02-161-0/+2
* s/raw_as_bytes/raw/g (#276)INADA Naoki2018-01-121-8/+8
* Packer.pack() reset buffer on exception (#274)INADA Naoki2018-01-111-1/+5
* Add raw_as_bytes option to Unpacker. (#265)INADA Naoki2018-01-111-6/+46
* fallback: Update docstring.INADA Naoki2018-01-101-5/+11
* Deprecate write_bytes option in Unpacker. (#262)INADA Naoki2018-01-051-0/+4
* Add unittests to document serialisation of tuples (#246)Lorenzo Bolla2017-09-301-1/+1
* Packer accepts bytearray objects (#229)jfolz2017-05-181-2/+4
* Unpacker: add tell() (#227)jfolz2017-04-301-0/+5
* Merge branch 'release-0.4'INADA Naoki2017-01-121-5/+5
|\
| * fix typos and other cosmetic issues (#214)release-0.4TW2017-01-111-8/+8
* | enable unpacking from memoryviewfolz2016-06-131-14/+23
* | fallback: Use bytearray as bufferINADA Naoki2016-05-241-9/+15
* | fallback: Use struct.unpack_from when possibleINADA Naoki2016-05-241-50/+100
* | fallback: simplify write_bytes callback implementationINADA Naoki2016-05-221-60/+64
* | Remove _fb_ prefixINADA Naoki2016-05-221-86/+86
* | fallback: Rewrite buffer from array of bytes to bytearrayINADA Naoki2016-05-201-100/+69
* | refactor header packing for str and bin typesfolz2016-05-041-44/+39
* | fix problems associated with packing memoryviewsfolz2016-05-031-2/+24
* | msgpack pack and unpack throws only exception that inherit from MsgpackBaseEx...palaviv2016-02-121-25/+26
* | Support packing memoryview objectsfolz2016-01-251-2/+4
* | Merge pull request #158 from methane/feature/strict-typecheckINADA Naoki2016-01-251-11/+33
|\ \ | |/ |/|
| * strict_types should be last argumentINADA Naoki2015-11-101-9/+9
| * fallback unpacker: precise => strictINADA Naoki2015-11-101-12/+13
| * Merge branch 'master' of https://github.com/faerot/msgpack-python into pramuk...INADA Naoki2015-11-101-11/+32
| |\
| | * precise_mode instead of distinguish_tuplefaerot2014-05-221-17/+31
| | * added distinguish_tuple argument to Packerfaerot2014-05-221-2/+9
* | | Merge pull request #163 from ThomasWaldmann/masterINADA Naoki2015-12-101-1/+1
|\ \ \ | |/ / |/| |
| * | fix typosThomas Waldmann2015-12-091-1/+1
* | | calling the default function upon integer overflow in the fallback routinePramukta Kumar2015-03-171-0/+4
|/ /
* | fallback: Add some comment to Unpacker members.INADA Naoki2015-01-271-1/+8
* | Fix #124Bas Westerbaan2015-01-261-1/+4
* | Add max_<type>_len option to unpacker. (fixes #97).INADA Naoki2015-01-251-29/+98
* | add support for pypy3Xiaojie Lin2014-11-141-1/+4
* | 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