From f6dca124c1089521a89af68ed9b9ac98a2033001 Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Thu, 21 Aug 2014 11:09:15 +0200 Subject: [PATCH] Added JSONEncoder and JSONDecoder Users may be interested in subclassing them, and they should not intermix different implementations, so let's provide them with implementation agnostic classes. Change-Id: I63ecd5dbbf78089d9e5c43ca5895c748eb23f070 --- oslo/serialization/jsonutils.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/oslo/serialization/jsonutils.py b/oslo/serialization/jsonutils.py index b2bdd7f..1edd76d 100644 --- a/oslo/serialization/jsonutils.py +++ b/oslo/serialization/jsonutils.py @@ -163,6 +163,10 @@ def to_primitive(value, convert_instances=False, convert_datetime=True, return six.text_type(value) +JSONEncoder = json.JSONEncoder +JSONDecoder = json.JSONDecoder + + def dumps(obj, default=to_primitive, **kwargs): """Serialize ``obj`` to a JSON formatted ``str``. :param obj: object to be serialized