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

serializer: Add comment about simplejson vs. built-in json


Signed-off-by: default avatarMichael Hanselmann <hansmi@google.com>
Reviewed-by: default avatarIustin Pop <iustin@google.com>
parent cdeda3b6
No related branches found
No related tags found
No related merge requests found
......@@ -29,9 +29,15 @@ backend (currently json).
# C0103: Invalid name, since pylint doesn't see that Dump points to a
# function and not a constant
import simplejson
import re
# Python 2.6 and above contain a JSON module based on simplejson. Unfortunately
# the standard library version is significantly slower than the external
# module. While it should be better from at least Python 3.2 on (see Python
# issue 7451), for now Ganeti needs to work well with older Python versions
# too.
import simplejson
from ganeti import errors
from ganeti import utils
......
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