HomeSort by relevance Sort by last modified time
    Searched refs:object_hook (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebKitTools/simplejson/
__init__.py 66 ... object_hook=as_complex)
218 _default_decoder = JSONDecoder(encoding=None, object_hook=None)
220 def load(fp, encoding=None, cls=None, object_hook=None, **kw):
232 ``object_hook`` is an optional function that will be called with the
234 ``object_hook`` will be used instead of the ``dict``. This feature
241 encoding=encoding, cls=cls, object_hook=object_hook, **kw)
243 def loads(s, encoding=None, cls=None, object_hook=None, **kw):
253 ``object_hook`` is an optional function that will be called with the
255 ``object_hook`` will be used instead of the ``dict``. This featur
    [all...]
decoder.py 154 object_hook = getattr(context, 'object_hook', None)
155 if object_hook is not None:
156 pairs = object_hook(pairs)
229 def __init__(self, encoding=None, object_hook=None):
238 ``object_hook``, if specified, will be called with the result
244 self.object_hook = object_hook

Completed in 45 milliseconds