Lines Matching refs:parse_float
69 >>> json.loads('1.1', parse_float=Decimal) == Decimal('1.1')
274 def load(fp, *, cls=None, object_hook=None, parse_float=None,
295 parse_float=parse_float, parse_int=parse_int,
299 def loads(s, *, cls=None, object_hook=None, parse_float=None,
315 ``parse_float``, if specified, will be called with the string
344 parse_int is None and parse_float is None and
353 if parse_float is not None:
354 kw['parse_float'] = parse_float