mirror of
https://github.com/kennethreitz/tablib.git
synced 2026-06-05 23:10:17 +00:00
Added vendorized JSON.
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user