Home | History | Annotate | Download | only in json

Lines Matching refs:parse_float

72     >>> json.loads('1.1', parse_float=Decimal) == Decimal('1.1')
257 def load(fp, encoding=None, cls=None, object_hook=None, parse_float=None,
288 parse_float=parse_float, parse_int=parse_int,
293 def loads(s, encoding=None, cls=None, object_hook=None, parse_float=None,
316 ``parse_float``, if specified, will be called with the string
336 parse_int is None and parse_float is None and
345 if parse_float is not None:
346 kw['parse_float'] = parse_float