Added vendorized JSON.

This commit is contained in:
Kenneth Reitz
2010-10-06 14:27:05 -04:00
parent 471e56c387
commit 3931bcb4e6
+5 -2
View File
@@ -4,9 +4,12 @@
"""
try:
import json
import json # load system JSON (Python >= 2.6)
except ImportError:
import simplejson as json
try:
import simplejson as json
except ImportError:
import tablib.packages.simplejson as json # use the vendorized copy
import tablib.core