Commit ef8ea134 by Jeremy Katz

Fall back to standalone simplejson module

CentOS5 has python 2.4 which doesn't have a built-in json
module
parent 9681e1fa
#!/usr/bin/python
import json
try:
import json
except ImportError:
import simplejson as json
import subprocess
import sys
import datetime
......
#!/usr/bin/python
import json
try:
import json
except ImportError:
import simplejson as json
print json.dumps(1)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment