Skip to content

Commit f8f49dc

Browse files
authored
Change docstring for dumps as well
1 parent 9200894 commit f8f49dc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Lib/json/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,9 +206,9 @@ def dumps(obj, *, skipkeys=False, ensure_ascii=True, check_circular=True,
206206
207207
If ``indent`` is a non-negative integer, then JSON array elements and
208208
object members will be pretty-printed with that indent level. An indent
209-
level of 0 will only insert newlines. ``None`` is the most compact
210-
representation.
211-
209+
level of 0 will only insert newlines. ``None`` gives a compact
210+
representation; see below.
211+
212212
If specified, ``separators`` should be an ``(item_separator,
213213
key_separator)`` tuple. The default is ``(', ', ': ')`` if *indent* is
214214
``None`` and ``(',', ': ')`` otherwise. To get the most compact JSON

0 commit comments

Comments
 (0)