summaryrefslogtreecommitdiff
path: root/msgpack
Commit message (Collapse)AuthorAgeFilesLines
...
* Undeprecate unicode_errors (#278)INADA Naoki2018-02-053-11/+7
|
* 0.5.3INADA Naoki2018-02-031-1/+1
|
* Fix encoding and unicode_errors (#277)Andrew Rabert2018-02-031-17/+16
| | | | | | | Previously, unicode_errors was either set to NULL or to the result of PyBytes_AsString. This restores that behavior while also keeping the existing NULL default behavior. Original defaults were restored to keep API compatibility until these deprecated options are finally removed.
* 0.5.20.5.2INADA Naoki2018-02-021-1/+1
|
* s/raw_as_bytes/raw/g (#276)INADA Naoki2018-01-123-23/+23
| | | fixes #273
* Packer.pack() reset buffer on exception (#274)INADA Naoki2018-01-112-6/+12
| | | fixes #210
* packer: Use PyUnicode_AsUTF8AndSize() for utf-8 (#272)INADA Naoki2018-01-112-13/+70
|
* Add raw_as_bytes option to Unpacker. (#265)INADA Naoki2018-01-114-45/+118
|
* fallback: Update docstring.INADA Naoki2018-01-102-6/+12
|
* Remove FutureWarning about use_bin_type option (#271)INADA Naoki2018-01-101-13/+13
|
* prepare 0.5INADA Naoki2018-01-071-1/+1
|
* Warn about future use_bin_type change (#264)INADA Naoki2018-01-061-2/+10
|
* Raise MemoryError when failed to grow buffer (#263)INADA Naoki2018-01-051-1/+4
|
* Deprecate write_bytes option in Unpacker. (#262)INADA Naoki2018-01-052-0/+7
| | | Fixes #197
* fix zero length raw can't be decoded. (#236)INADA Naoki2017-12-211-1/+1
| | | fix #234
* Add unittests to document serialisation of tuples (#246)Lorenzo Bolla2017-09-301-1/+1
| | | | Also, fix formatting of error message in case of tuple. See https://github.com/msgpack/msgpack-python/issues/245
* Packer accepts bytearray objects (#229)jfolz2017-05-182-4/+16
|
* Unpacker: add tell() (#227)jfolz2017-04-302-0/+12
|
* Merge branch 'release-0.4'INADA Naoki2017-01-123-9/+9
|\
| * fix typos and other cosmetic issues (#214)release-0.4TW2017-01-113-14/+14
| | | | | | | | | | | | | | 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 branch 'release-0.4'INADA Naoki2016-07-301-1/+1
|\ \ | |/
| * 0.4.80.4.8INADA Naoki2016-07-291-1/+1
| |
* | Merge branch 'release-0.4'INADA Naoki2016-07-211-2/+2
|\ \ | |/
| * Fix ext_hook call (#203)INADA Naoki2016-07-211-2/+2
| | | | | | fixes #202
| * Use AppVeyor to build windows wheel (#188)INADA Naoki2016-07-211-2/+2
| | | | | | | | | | | | * Add AppVeyor support to build windows wheel * Fix test_limits on 32bit environments * Ignore Python35-x64 test fail for now Should be fixed in next version.
* | enable unpacking from memoryviewfolz2016-06-132-32/+97
| |
* | 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
| |
* | s/realloc/PyMem_Realloc/ (#193)INADA Naoki2016-05-081-1/+1
| |
* | Remove unused import (#190)INADA Naoki2016-05-051-3/+0
| |
* | travis: Use docker to test 32bit environment (#189)INADA Naoki2016-05-051-2/+2
| | | | | | | | | | * travis: testing matrix.include feature to use docker * Add test script for 32bit * Fix OverflowError in 32bit Environment
* | refactor header packing for str and bin typesfolz2016-05-041-44/+39
| |
* | fix problems associated with packing memoryviewsfolz2016-05-032-13/+36
| | | | | | | | | | fix wrong length when packing multibyte memoryviews in fallback add tests for memoryviews of different types and sizes and check contents of packed data
* | Use AppVeyor to build windows wheel (#188)INADA Naoki2016-05-031-2/+2
| | | | | | | | | | | | * Add AppVeyor support to build windows wheel * Fix test_limits on 32bit environments * Ignore Python35-x64 test fail for now Should be fixed in next version.
* | Use Python's memory API (#185)INADA Naoki2016-04-302-9/+21
| |
* | Deprecate more useless exceptionsINADA Naoki2016-02-141-2/+2
| |
* | Deprecate PackExceptionsINADA Naoki2016-02-142-8/+14
| |
* | ExtraData should be UnpackValueErrorINADA Naoki2016-02-141-1/+1
| |
* | removed MsgpackBaseExceptionpalaviv2016-02-121-6/+4
| |
* | reraising ValueError from unpack.h as UnpackValueErrorpalaviv2016-02-121-17/+20
| |
* | changed more ValueErrors to PackValueErrorpalaviv2016-02-121-5/+5
| |
* | msgpack pack and unpack throws only exception that inherit from ↵palaviv2016-02-123-34/+43
| | | | | | | | MsgpackBaseException. cython and fallback throws same exceptions
* | Support packing memoryview objectsfolz2016-01-252-2/+21
| |
* | Merge pull request #158 from methane/feature/strict-typecheckINADA Naoki2016-01-252-21/+54
|\ \ | |/ |/| Packer: check type strictly
| * strict type check for ext typeINADA Naoki2015-11-101-1/+1
| |
| * strict_types should be last argumentINADA Naoki2015-11-102-16/+16
| |
| * fallback unpacker: precise => strictINADA Naoki2015-11-101-12/+13
| |