Home | History | Annotate | Download | only in json

Lines Matching defs:separators

34     >>> json.dumps([1,2,3,{'4': 5, '6': 7}], sort_keys=True, separators=(',',':'))
41 ... indent=4, separators=(',', ': '))
117 separators=None,
123 allow_nan=True, cls=None, indent=None, separators=None,
155 You can use ``separators=(',', ': ')`` to avoid this.
157 If ``separators`` is an ``(item_separator, dict_separator)`` tuple
158 then it will be used instead of the default ``(', ', ': ')`` separators.
177 cls is None and indent is None and separators is None and
185 separators=separators, encoding=encoding,
194 allow_nan=True, cls=None, indent=None, separators=None,
219 You can use ``separators=(',', ': ')`` to avoid this.
221 If ``separators`` is an ``(item_separator, dict_separator)`` tuple
222 then it will be used instead of the default ``(', ', ': ')`` separators.
241 cls is None and indent is None and separators is None and
249 separators=separators, encoding=encoding, default=default,