summaryrefslogtreecommitdiff
path: root/Lib/json
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-11-29 02:26:15 +0200
committerEzio Melotti <ezio.melotti@gmail.com>2012-11-29 02:26:15 +0200
commit4cee810f5d0376ba32f893340e9a5fefc1b56e05 (patch)
tree2ac8554fdd8c04db0ef7b51686de4895e377d083 /Lib/json
parent1e86d01e1ebca5554c51d18dee404658c14bce00 (diff)
parentb32512ed9a1ab9912a9e0bdbb609ca1a19949355 (diff)
downloadcpython-git-4cee810f5d0376ba32f893340e9a5fefc1b56e05.tar.gz
#16476: merge with 3.2.
Diffstat (limited to 'Lib/json')
-rw-r--r--Lib/json/tool.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/json/tool.py b/Lib/json/tool.py
index 9ab6d6546a..0f108c6dae 100644
--- a/Lib/json/tool.py
+++ b/Lib/json/tool.py
@@ -31,7 +31,8 @@ def main():
except ValueError as e:
raise SystemExit(e)
with outfile:
- json.dump(obj, outfile, sort_keys=True, indent=4)
+ json.dump(obj, outfile, sort_keys=True,
+ indent=4, separators=(',', ': '))
outfile.write('\n')