Skip to content
Snippets Groups Projects
Commit 9869e771 authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

serializer: Support newer “json” module


This module is included from Python 2.6 and is based on
simplejson.

Signed-off-by: default avatarMichael Hanselmann <hansmi@google.com>
Reviewed-by: default avatarRené Nussbaumer <rn@google.com>
parent acd9fa11
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,13 @@ backend (currently json).
# C0103: Invalid name, since pylint doesn't see that Dump points to a
# function and not a constant
import simplejson
try:
import json
except ImportError:
# The "json" module was only added in Python 2.6. Earlier versions must use
# the separate "simplejson" module.
import simplejson as json
import re
from ganeti import errors
......@@ -41,7 +47,7 @@ _JSON_INDENT = 2
_RE_EOLSP = re.compile("[ \t]+$", re.MULTILINE)
def _GetJsonDumpers(_encoder_class=simplejson.JSONEncoder):
def _GetJsonDumpers(_encoder_class=json.JSONEncoder):
"""Returns two JSON functions to serialize data.
@rtype: (callable, callable)
......@@ -93,7 +99,7 @@ def LoadJson(txt):
@return: the original data
"""
return simplejson.loads(txt)
return json.loads(txt)
def DumpSignedJson(data, key, salt=None, key_selector=None):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment