Skip to content

Commit 539d82c

Browse files
authored
Edit json.dump docstring
1 parent 6729677 commit 539d82c

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
@@ -142,9 +142,9 @@ def dump(obj, fp, *, skipkeys=False, ensure_ascii=True, check_circular=True,
142142
143143
If ``indent`` is a non-negative integer, then JSON array elements and
144144
object members will be pretty-printed with that indent level. An indent
145-
level of 0 will only insert newlines. ``None`` is the most compact
146-
representation.
147-
145+
level of 0 will only insert newlines. ``None`` gives a compact
146+
representation; see below.
147+
148148
If specified, ``separators`` should be an ``(item_separator,
149149
key_separator)`` tuple. The default is ``(', ', ': ')`` if *indent* is
150150
``None`` and ``(',', ': ')`` otherwise. To get the most compact JSON

0 commit comments

Comments
 (0)