Searched refs:JSONDecoder (Results 1 – 13 of 13) sorted by relevance
/third_party/python/Lib/json/ |
D | __init__.py | 106 from .decoder import JSONDecoder, JSONDecodeError 241 _default_decoder = JSONDecoder(object_hook=None, object_pairs_hook=None) 348 cls = JSONDecoder
|
D | decoder.py | 254 class JSONDecoder(object): class
|
/third_party/python/Lib/test/test_json/ |
D | test_decode.py | 61 decoder = self.json.decoder.JSONDecoder() 95 d = self.json.JSONDecoder()
|
D | test_speedups.py | 27 self.json.decoder.JSONDecoder(strict=BadBool()).decode(value)
|
/third_party/mesa3d/src/compiler/spirv/ |
D | vtn_gather_types_c.py | 113 spirv_info = json.JSONDecoder().decode(open(args.json, "r").read())
|
D | spirv_info_c.py | 113 spirv_info = json.JSONDecoder().decode(open(pargs.json, "r").read())
|
/third_party/python/Doc/library/ |
D | json.rst | 266 To use a custom :class:`JSONDecoder` subclass, specify it with the ``cls`` 267 kwarg; otherwise :class:`JSONDecoder` is used. Additional keyword arguments 302 .. class:: JSONDecoder(*, object_hook=None, parse_float=None, parse_int=None, parse_constant=None, … 549 For simplicity, :class:`JSONEncoder` and :class:`JSONDecoder` subclasses, and
|
/third_party/cef/tools/cefbuilds/ |
D | cef_json_builder.py | 242 new_data = json.JSONDecoder(object_hook=cef_from_json).decode(json_string)
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.0a3.rst | 144 and JSONEncoder and JSONDecoder class constructors in the json module are
|
D | 3.5.0a1.rst | 4032 Fix arbitrary memory access in JSONDecoder.raw_decode with a negative second
|
/third_party/python/Doc/whatsnew/ |
D | 3.6.rst | 2228 :class:`~json.JSONEncoder` and :class:`~json.JSONDecoder` class
|
D | 2.7.rst | 298 * The :mod:`json` module's :class:`~json.JSONDecoder` class
|
/third_party/python/Misc/ |
D | HISTORY | 1978 JSONDecoder.raw_decode with a negative second parameter. Bug reported by Guido
|