Home | History | Annotate | Download | only in simplejson

Lines Matching full:false

99     skipkeys=False,
108 def dump(obj, fp, skipkeys=False, ensure_ascii=True, check_circular=True,
119 If ``ensure_ascii`` is ``False``, then the some chunks written to ``fp``
125 If ``check_circular`` is ``False``, then the circular reference check
129 If ``allow_nan`` is ``False``, then it will be a ``ValueError`` to
149 if (skipkeys is False and ensure_ascii is True and
166 def dumps(obj, skipkeys=False, ensure_ascii=True, check_circular=True,
176 If ``ensure_ascii`` is ``False``, then the return value will be a
180 If ``check_circular`` is ``False``, then the circular reference check
184 If ``allow_nan`` is ``False``, then it will be a ``ValueError`` to
205 if (skipkeys is False and ensure_ascii is True and