diff options
author | Éric Araujo <merwok@netwok.org> | 2011-04-24 02:42:52 +0200 |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-04-24 02:42:52 +0200 |
commit | fbeb1a94681d9921e9169e991504584eef4501a9 (patch) | |
tree | 63d9b157bb0b0783862c5f7da49d5eeff219fdf9 /Doc/library/json.rst | |
parent | cae1be85f5ac78a7ec73d129ca46cdfc5c5a5ad9 (diff) | |
parent | 5348b63a91e3517116fcef2a9e7019b640aa6c9f (diff) | |
download | cpython-git-fbeb1a94681d9921e9169e991504584eef4501a9.tar.gz |
Merge 3.1
Diffstat (limited to 'Doc/library/json.rst')
-rw-r--r-- | Doc/library/json.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/json.rst b/Doc/library/json.rst index dcd6973e2b..4ee17f2395 100644 --- a/Doc/library/json.rst +++ b/Doc/library/json.rst @@ -34,7 +34,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:: |