Searched refs:JSONDecoder (Results 1 – 17 of 17) sorted by relevance
/external/python/cpython2/Lib/json/ |
D | __init__.py | 108 from .decoder import JSONDecoder 254 _default_decoder = JSONDecoder(encoding=None, object_hook=None, 341 cls = JSONDecoder
|
D | decoder.py | 272 class JSONDecoder(object): class
|
/external/python/cpython3/Lib/json/ |
D | __init__.py | 106 from .decoder import JSONDecoder, JSONDecodeError 241 _default_decoder = JSONDecoder(object_hook=None, object_pairs_hook=None) 356 cls = JSONDecoder
|
D | decoder.py | 253 class JSONDecoder(object): class
|
/external/python/cpython3/Lib/test/test_json/ |
D | test_decode.py | 61 self.check_keys_reuse(s, self.json.decoder.JSONDecoder().decode) 93 d = self.json.JSONDecoder()
|
/external/autotest/scheduler/shard/ |
D | simple_heartbeat_client.py | 38 json_decoder = decoder.JSONDecoder()
|
/external/python/cpython2/Lib/json/tests/ |
D | test_decode.py | 64 d = self.json.JSONDecoder()
|
/external/autotest/frontend/afe/json_rpc/ |
D | serviceHandler.py | 36 json_decoder = decoder.JSONDecoder()
|
D | proxy.py | 139 resp = decoder.JSONDecoder().decode(respdata)
|
/external/python/cpython2/Doc/library/ |
D | json.rst | 260 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/ |
D | json.rst | 259 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/ |
D | 3.6.rst | 2176 :class:`~json.JSONEncoder` and :class:`~json.JSONDecoder` class
|
D | 2.7.rst | 298 * The :mod:`json` module's :class:`~json.JSONDecoder` class
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.7.rst | 298 * The :mod:`json` module's :class:`~json.JSONDecoder` class
|
/external/python/cpython3/Misc/ |
D | NEWS | 1762 load() and loads() functions and JSONEncoder and JSONDecoder class 7942 JSONDecoder.raw_decode with a negative second parameter. Bug reported by Guido
|
D | HISTORY | 1978 JSONDecoder.raw_decode with a negative second parameter. Bug reported by Guido
|
/external/python/cpython2/Misc/ |
D | NEWS | 2123 JSONDecoder.raw_decode with a negative second parameter. Bug reported by Guido
|