Kaydet (Commit) a7fbad96 authored tarafından Sergey Fedoseev's avatar Sergey Fedoseev Kaydeden (comit) Mariatta

Make `json.dumps()` example to be PEP-8 compliant. (GH-3472)

üst b84bcc48
......@@ -43,7 +43,7 @@ Encoding basic Python object hierarchies::
Compact encoding::
>>> import json
>>> json.dumps([1,2,3,{'4': 5, '6': 7}], separators=(',', ':'))
>>> json.dumps([1, 2, 3, {'4': 5, '6': 7}], separators=(',', ':'))
'[1,2,3,{"4":5,"6":7}]'
Pretty printing::
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment