AFAIK, what you want does not exist, but I have an idea how you could implement it if you are interested ...
json , () . , . , Python 2.7+. Python JSON-, ( ) C.
, .
1) pure-python, json.JSONDecoder :
class PyDecoder(json.JSONDecoder):
def __init__(self, encoding=None, object_hook=None, parse_float=None,
parse_int=None, parse_constant=None, strict=True,
object_pairs_hook=None):
super(PyDecoder, self).__init__(encoding, object_hook, parse_float,
parse_int, parse_constant, strict)
self.scan_once = json.scanner.py_make_scanner(self)
2) , json.decoder.JSONObject , , .