OpenStack library for serialization
Go to file
Morgan d5855294a8 Stop using encoding='utf-8' with msgpack
msgpack is throwing a warning that the unpacker has deprecated the use
of encoding argument. Instead the unpacker uses `raw=False`, which
does an unpack with similar behavior to the old encoding='utf-8'
mechanism.

This will reduce a lot of warning spam for projects using msgpack
such as Keystone. The change to the kwarg "raw" from "bytes_as_raw"
happned between 0.5.1 and 0.5.2. Changing the lower constraint is
required to ensure the new arguments are matching the method
signature.

Change-Id: Iadbee3ec8def9512369a415fb4603dc05d0cbc56
2018-06-03 00:25:50 -07:00
doc Updated from global requirements 2018-03-15 07:50:57 +00:00
oslo_serialization Stop using encoding='utf-8' with msgpack 2018-06-03 00:25:50 -07:00
releasenotes Update reno for stable/queens 2018-01-24 18:07:43 +00:00
.coveragerc Fix coverage configuration and execution 2015-10-08 17:22:20 -04:00
.gitignore Add reno for release notes management 2016-11-03 20:44:36 +08:00
.gitreview exported from oslo-incubator by graduate.sh 2014-07-14 17:54:12 +00:00
.mailmap exported from oslo-incubator by graduate.sh 2014-07-14 17:54:12 +00:00
.testr.conf Fixes wrong folder for listing tests 2015-04-27 15:00:14 +02:00
.zuul.yaml add lower-constraints job 2018-03-24 21:02:54 -04:00
CONTRIBUTING.rst switch from oslosphinx to openstackdocstheme 2017-07-06 21:53:27 +00:00
HACKING.rst Update URLs in documents according to document migration 2017-07-12 23:21:07 +08:00
LICENSE exported from oslo-incubator by graduate.sh 2014-07-14 17:54:12 +00:00
README.rst Trivial: Update pypi url to new url 2018-04-21 10:45:59 +08:00
babel.cfg exported from oslo-incubator by graduate.sh 2014-07-14 17:54:12 +00:00
lower-constraints.txt Stop using encoding='utf-8' with msgpack 2018-06-03 00:25:50 -07:00
requirements.txt Stop using encoding='utf-8' with msgpack 2018-06-03 00:25:50 -07:00
setup.cfg Use Sphinx 1.5 warning-is-error 2017-03-16 15:01:15 +00:00
setup.py Updated from global requirements 2017-03-03 00:03:20 +00:00
test-requirements.txt Updated from global requirements 2018-03-15 07:50:57 +00:00
tox.ini Remove stale pip-missing-reqs tox test 2018-05-02 10:53:27 -04:00

README.rst

Team and repository tags

image

oslo.serialization

Latest Version

Downloads

The oslo.serialization library provides support for representing objects in transmittable and storable formats, such as Base64, JSON and MessagePack.