Commit 6bebedd7 by Michael DeHaan

Merge pull request #1 from katzj/centos5-simplejson

Fall back to standalone simplejson module
parents 7be8d134 ef8ea134
#!/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