Skip to content

Commit fe9bebf

Browse files
miss-islingtonMariatta
authored andcommitted
[3.6] Make json.dumps() example to be PEP-8 compliant. (GH-3472) (GH-3473)
(cherry picked from commit a7fbad9)
1 parent 16f16db commit fe9bebf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Doc/library/json.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Encoding basic Python object hierarchies::
4343
Compact encoding::
4444

4545
>>> import json
46-
>>> json.dumps([1,2,3,{'4': 5, '6': 7}], separators=(',', ':'))
46+
>>> json.dumps([1, 2, 3, {'4': 5, '6': 7}], separators=(',', ':'))
4747
'[1,2,3,{"4":5,"6":7}]'
4848

4949
Pretty printing::

0 commit comments

Comments
 (0)