summaryrefslogtreecommitdiff
path: root/msgpack/fallback.py
Commit message (Collapse)AuthorAgeFilesLines
* fallback: Fix packing multidim memoryview (#527)Inada Naoki2023-01-181-1/+1
| | | Fix #526
* Fix Unpacker max_buffer_length handling (#506)Inada Naoki2022-05-241-0/+2
|
* Update setuptools and black (#498)Inada Naoki2022-03-031-6/+6
| | | | * Use setuptools * Use black==22.1.0
* Don't define __*_ENDIAN__ macro on Unix. (#495)Inada Naoki2022-01-191-4/+0
|
* Nicer error when packing a datetime without tzinfo (#466)Benjamin Egelund-Müller2021-11-161-0/+4
|
* Fix black formattingInada Naoki2021-11-161-1/+1
|
* Fix error formatting (#463)Andrey Bienkowski2021-02-261-6/+10
|
* fix docstring (#459)Inada Naoki2021-02-121-1/+1
|
* Refactor fallback read header (#441)Guy Tuval2021-01-021-165/+82
|
* Update docstringInada Naoki2020-12-041-1/+24
|
* Synchronize handling of datetime in Packer implementations (#434)Peter Fischer2020-07-241-1/+1
| | | The handling of datetime is different in the cython and Python implementations. In contrast to the docs, timezone is not required in the Python implementation.
* Fix Unpacker.tell() (#427)jfolz2020-06-081-7/+8
| | | | | Fixes #426. Co-authored-by: folz <joachim.folz@dfki.de>
* Add some test for timestamp (#403)Inada Naoki2020-02-061-7/+1
|
* Fix some typoInada Naoki2019-12-131-5/+5
|
* Refine Timestamp APIs (#395)Inada Naoki2019-12-121-2/+2
|
* Support datetime. (#394)Inada Naoki2019-12-111-4/+44
|
* Unpacker: Change max_buffer_size to 100MiB (#391)Inada Naoki2019-12-091-15/+18
|
* Update README (#393)Inada Naoki2019-12-091-2/+2
|
* Make strict_map_key default to True (#392)Inada Naoki2019-12-061-4/+2
|
* Fix fallback Unpacker.read() (#388)Inada Naoki2019-12-061-1/+3
| | | Fixes #352.
* Remove unused importInada Naoki2019-12-061-1/+0
|
* Use new msgpack spec by default. (#386)Inada Naoki2019-12-051-12/+8
|
* fallback: Remove old buffer protocol support (#384)Inada Naoki2019-12-051-15/+1
|
* Remove deprecated submodule unpack (#385)Inada Naoki2019-12-051-10/+0
|
* blackenInada Naoki2019-12-051-170/+223
|
* Add Timestamp support (#382)Inada Naoki2019-12-051-4/+8
|
* Intern map keys (#381)Inada Naoki2019-12-031-0/+2
| | | Fixes #372.
* Remove encoding option from Unpacker. (#380)Inada Naoki2019-12-031-18/+5
|
* Ressurect unicode_errors of the Packer. (#379)Inada Naoki2019-12-031-3/+8
|
* Remove encoding/unicode_errors options from Packer (#378)Inada Naoki2019-12-031-24/+2
|
* Drop Python 2 support from _cmsgpack (#376)Inada Naoki2019-11-281-3/+2
|
* use relative imports (#357)Felix Schwarz2019-05-121-2/+2
| | | | | Some applications use msgpack to store persistent data and require a specific msgpack version (e.g. borgbackup). Bundling helps in case there is an (incompatible) version of msgpack in a system-wide install.
* Recommend max_buffer_len instead of max_(str|bin|ext)_lenInada Naoki2019-01-251-10/+10
|
* Auto limit configuration (#342)Inada Naoki2019-01-241-12/+27
|
* Fix docstringInada Naoki2018-12-041-1/+1
|
* cleanupInada Naoki2018-11-301-13/+13
|
* Fix fallbackInada Naoki2018-11-301-1/+1
|
* Implement strict_map_key to fallback unpacker.Inada Naoki2018-11-291-1/+9
|
* Add StackError and FormatError (#331)INADA Naoki2018-11-201-5/+38
|
* fallback: Fix warning stacklevel (#327)INADA Naoki2018-11-141-4/+4
|
* Remove deprecated write_bytes option (#322)INADA Naoki2018-11-121-16/+4
|
* Remove deprecated exception classes (#323)INADA Naoki2018-11-121-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
| | | | | To avoid DoS attack, make default size limit smaller. Fixes #295
* Alternate fixes for jython and legacy CPython (#310)Raymond E Ferguson2018-10-021-39/+35
| | | | | | | | | | | | Python 3.4 is not supported officially. But keep running test for a while, to know when msgpack-python stop working on Python 3.4 actually. The current patches did not work under jython-2.7.1 where implicit casting of buffer or memoryview doesn't work. It may also be the jython is a little pickier about string casting non string bytes due to the underlying strong typing of java. See issues #303 & #304.
* fallback: Fix error on JythonInada Naoki2018-06-271-0/+7
| | | | Fixes #303
* 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
| | | Fixes #287