reverted simplejson

This commit is contained in:
mdipierro
2014-09-15 18:30:37 -05:00
parent 2b50cf27e2
commit df234fa252
7 changed files with 12 additions and 3 deletions
+2
View File
@@ -7,6 +7,7 @@ import struct
from scanner import make_scanner
def _import_c_scanstring():
try:
raise ImportError # because assumes simplejson in path
from simplejson._speedups import scanstring
return scanstring
except ImportError:
@@ -419,3 +420,4 @@ class JSONDecoder(object):
except StopIteration:
raise JSONDecodeError("No JSON object could be decoded", s, idx)
return obj, end