Home | History | Annotate | Download | only in json

Lines Matching refs:object_hook

67     ...     object_hook=as_complex)
241 _default_decoder = JSONDecoder(object_hook=None, object_pairs_hook=None)
274 def load(fp, *, cls=None, object_hook=None, parse_float=None,
279 ``object_hook`` is an optional function that will be called with the
281 ``object_hook`` will be used instead of the ``dict``. This feature
290 ``object_hook`` is also defined, the ``object_pairs_hook`` takes priority.
297 cls=cls, object_hook=object_hook,
302 def loads(s, *, encoding=None, cls=None, object_hook=None, parse_float=None,
307 ``object_hook`` is an optional function that will be called with the
309 ``object_hook`` will be used instead of the ``dict``. This feature
318 ``object_hook`` is also defined, the ``object_pairs_hook`` takes priority.
351 if (cls is None and object_hook is None and
357 if object_hook is not None:
358 kw['object_hook'] = object_hook