summaryrefslogtreecommitdiff
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* fallback: Fix packing multidim memoryview (#527)Inada Naoki2023-01-181-0/+8
| | | Fix #526
* Fix Unpacker max_buffer_length handling (#506)Inada Naoki2022-05-241-1/+10
|
* Update setuptools and black (#498)Inada Naoki2022-03-034-28/+28
| | | | * Use setuptools * Use black==22.1.0
* Nicer error when packing a datetime without tzinfo (#466)Benjamin Egelund-Müller2021-11-161-0/+16
|
* Remove redundant code (#460)Andrey Bienkowski2021-02-161-7/+0
|
* Fix overflow in unpacking timestamp to datetime (#452)Inada Naoki2020-12-181-0/+11
|
* Fix datetime before epoch on windows in cython implementation (#436)Peter Fischer2020-07-301-0/+8
| | | | Cython implementation still used datetime.from_timestamp method, which does not work on windows. Update the cython implementation to use utc time and delta and add a regression test to highlight the issue.
* Fix Unpacker.tell() (#427)jfolz2020-06-081-0/+29
| | | | | Fixes #426. Co-authored-by: folz <joachim.folz@dfki.de>
* Add some test for timestamp (#403)Inada Naoki2020-02-064-27/+38
|
* Refine Timestamp APIs (#395)Inada Naoki2019-12-121-5/+11
|
* Support datetime. (#394)Inada Naoki2019-12-111-2/+46
|
* Make strict_map_key default to True (#392)Inada Naoki2019-12-066-11/+14
|
* Fix fallback Unpacker.read() (#388)Inada Naoki2019-12-061-0/+9
| | | Fixes #352.
* Use new msgpack spec by default. (#386)Inada Naoki2019-12-057-50/+39
|
* fallback: Remove old buffer protocol support (#384)Inada Naoki2019-12-051-4/+4
|
* blacken testInada Naoki2019-12-0516-334/+501
|
* Add Timestamp support (#382)Inada Naoki2019-12-051-0/+46
|
* Ressurect unicode_errors of the Packer. (#379)Inada Naoki2019-12-031-2/+14
|
* Remove encoding/unicode_errors options from Packer (#378)Inada Naoki2019-12-031-30/+0
|
* Remove pytest warningsInada Naoki2019-01-253-11/+27
|
* Auto limit configuration (#342)Inada Naoki2019-01-241-1/+24
|
* Fix testInada Naoki2018-11-301-2/+2
|
* Fix testInada Naoki2018-11-291-2/+2
|
* Add strict_map_key option to unpackerInada Naoki2018-11-291-0/+11
|
* Add StackError and FormatError (#331)INADA Naoki2018-11-201-6/+27
|
* Remove deprecated write_bytes option (#322)INADA Naoki2018-11-121-29/+0
|
* Add Packer.buffer() (#320)INADA Naoki2018-11-091-1/+11
|
* s/raw_as_bytes/raw/g (#276)INADA Naoki2018-01-124-11/+11
| | | fixes #273
* Add raw_as_bytes option to Unpacker. (#265)INADA Naoki2018-01-114-24/+20
|
* Remove code and tests for unsupported Python 2.6 (#250)Hugo2017-10-121-16/+2
|
* Add unittests to document serialisation of tuples (#246)Lorenzo Bolla2017-09-301-1/+48
| | | | 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-181-0/+7
|
* Unpacker: add tell() (#227)jfolz2017-04-301-0/+20
|
* Merge branch 'release-0.4'INADA Naoki2017-01-122-2/+2
|\
| * fix typos and other cosmetic issues (#214)release-0.4TW2017-01-112-2/+2
| | | | | | | | | | | | | | 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
* | enable unpacking from memoryviewfolz2016-06-131-0/+9
| |
* | Remove double underscore prefixINADA Naoki2016-05-051-22/+21
| |
* | add lower bound tests for memoryviewsfolz2016-05-041-0/+8
| |
* | more descriptive test namesfolz2016-05-041-51/+21
| |
* | fix problems associated with packing memoryviewsfolz2016-05-031-5/+128
| | | | | | | | | | fix wrong length when packing multibyte memoryviews in fallback add tests for memoryviews of different types and sizes and check contents of packed data
* | remove too much parameterized testsINADA Naoki2016-02-141-28/+21
| |
* | removed MsgpackBaseExceptionpalaviv2016-02-121-9/+9
| |
* | msgpack pack and unpack throws only exception that inherit from ↵palaviv2016-02-121-18/+28
| | | | | | | | MsgpackBaseException. cython and fallback throws same exceptions
* | Support packing memoryview objectsfolz2016-01-251-0/+12
| |
* | Add test for strict_types optionINADA Naoki2016-01-251-0/+15
|/
* Test to demonstrate that the default function isn't always called (#133)Pramukta Kumar2015-03-171-0/+19
|
* test_sequnpack: python3 literalsBas Westerbaan2015-01-261-6/+6
|
* Add test for issue #124Bas Westerbaan2015-01-261-0/+12
|
* Add max_<type>_len option to unpacker. (fixes #97).INADA Naoki2015-01-251-1/+72
| | | | Fix build error on 32bit environment (fixes #102).
* tests: add pytest 2.3 compatibilityKen Dreyer2015-01-231-1/+1
| | | | | | | Adjust the skipif conditional to use the older pytest 2.3 syntax. (This allows the tests to pass with the system pytest package on RHEL 7.0, since RHEL 7.0 ships pytest 2.3.5.)