OpenStack versioned objects library
Go to file
Sean McGinnis c4e7defc88 Don't force unicode strings for UUID coercion
Change Ic6b6308fb1960ec40407e6efde30137b64543e72 attempts to
fix difference between Python 2 and Python 3 values by switching
from using str() to formatting into a unicode string (u"%s").

This is equivalent to changing str() to unicode(), but that is
not correct for expected default string types for Python 2.
This requires either using six.text_type(), or just formatting
into a string, without forcing unicode ("%s"), to be correct on
either runtime.

Change-Id: I178f14cdc670d7a696778891e587ef75de208fc2
Closes-bug: #1763179
(cherry picked from commit b719764ba8)
2018-04-17 12:43:16 +00:00
doc Follow the new PTI for document build 2018-01-03 02:12:52 +00:00
oslo_versionedobjects Don't force unicode strings for UUID coercion 2018-04-17 12:43:16 +00:00
releasenotes switch from oslosphinx to openstackdocstheme 2017-07-01 21:02:48 +09:00
.coveragerc Fix coverage configuration and execution 2015-10-01 19:54:59 +00:00
.gitignore Add reno for release notes management 2016-11-03 14:43:46 +08:00
.gitreview Update .gitreview for stable/pike 2017-07-28 21:05:43 +00:00
.mailmap apply oslo-cookiecutter template 2015-02-02 15:08:43 -05:00
.testr.conf apply oslo-cookiecutter template 2015-02-02 15:08:43 -05:00
CONTRIBUTING.rst rearrange existing documentation to fit the new standard layout 2017-07-01 21:02:49 +09:00
HACKING.rst Update URLs in documents according to document migration 2017-07-13 10:00:49 +08:00
LICENSE apply oslo-cookiecutter template 2015-02-02 15:08:43 -05:00
README.rst Update URLs in documents according to document migration 2017-07-13 10:00:49 +08:00
babel.cfg apply oslo-cookiecutter template 2015-02-02 15:08:43 -05:00
requirements.txt Updated from global requirements 2017-07-18 01:55:13 +00:00
setup.cfg Avoid tox_install.sh for constraints support 2017-12-29 15:11:08 -06:00
setup.py Updated from global requirements 2017-03-03 00:03:27 +00:00
test-requirements.txt Avoid tox_install.sh for constraints support 2017-12-29 15:11:08 -06:00
tox.ini Use stable branch for upper constraints 2018-01-09 09:28:13 -06:00

README.rst

Team and repository tags

image

oslo.versionedobjects

Latest Version

Downloads

The oslo.versionedobjects library provides a generic versioned object model that is RPC-friendly, with inbuilt serialization, field typing, and remotable method calls. It can be used to define a data model within a project independent of external APIs or database schema for the purposes of providing upgrade compatibility across distributed services.