Home
last modified time | relevance | path

Searched refs:JSONDecoder (Results 1 – 17 of 17) sorted by relevance

/external/python/cpython2/Lib/json/
D__init__.py108 from .decoder import JSONDecoder
254 _default_decoder = JSONDecoder(encoding=None, object_hook=None,
341 cls = JSONDecoder
Ddecoder.py272 class JSONDecoder(object): class
/external/python/cpython3/Lib/json/
D__init__.py106 from .decoder import JSONDecoder, JSONDecodeError
241 _default_decoder = JSONDecoder(object_hook=None, object_pairs_hook=None)
356 cls = JSONDecoder
Ddecoder.py253 class JSONDecoder(object): class
/external/python/cpython3/Lib/test/test_json/
Dtest_decode.py61 self.check_keys_reuse(s, self.json.decoder.JSONDecoder().decode)
93 d = self.json.JSONDecoder()
/external/autotest/scheduler/shard/
Dsimple_heartbeat_client.py38 json_decoder = decoder.JSONDecoder()
/external/python/cpython2/Lib/json/tests/
Dtest_decode.py64 d = self.json.JSONDecoder()
/external/autotest/frontend/afe/json_rpc/
DserviceHandler.py36 json_decoder = decoder.JSONDecoder()
Dproxy.py139 resp = decoder.JSONDecoder().decode(respdata)
/external/python/cpython2/Doc/library/
Djson.rst260 To use a custom :class:`JSONDecoder` subclass, specify it with the ``cls``
261 kwarg; otherwise :class:`JSONDecoder` is used. Additional keyword arguments
282 .. class:: JSONDecoder([encoding[, object_hook[, parse_float[, parse_int[, parse_constant[, strict[…
500 For simplicity, :class:`JSONEncoder` and :class:`JSONDecoder` subclasses, and
/external/python/cpython3/Doc/library/
Djson.rst259 To use a custom :class:`JSONDecoder` subclass, specify it with the ``cls``
260 kwarg; otherwise :class:`JSONDecoder` is used. Additional keyword arguments
289 .. class:: JSONDecoder(*, object_hook=None, parse_float=None, parse_int=None, parse_constant=None, …
539 For simplicity, :class:`JSONEncoder` and :class:`JSONDecoder` subclasses, and
/external/python/cpython3/Doc/whatsnew/
D3.6.rst2176 :class:`~json.JSONEncoder` and :class:`~json.JSONDecoder` class
D2.7.rst298 * The :mod:`json` module's :class:`~json.JSONDecoder` class
/external/python/cpython2/Doc/whatsnew/
D2.7.rst298 * The :mod:`json` module's :class:`~json.JSONDecoder` class
/external/python/cpython3/Misc/
DNEWS1762 load() and loads() functions and JSONEncoder and JSONDecoder class
7942 JSONDecoder.raw_decode with a negative second parameter. Bug reported by Guido
DHISTORY1978 JSONDecoder.raw_decode with a negative second parameter. Bug reported by Guido
/external/python/cpython2/Misc/
DNEWS2123 JSONDecoder.raw_decode with a negative second parameter. Bug reported by Guido