diff options
author | R David Murray <rdmurray@bitdance.com> | 2011-04-13 01:02:45 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2011-04-13 01:02:45 (GMT) |
commit | 3dd02d62c90a169a32fb38bed34249a6cf7e1638 (patch) | |
tree | 7ace2c16e725e311f9702ee6cc15de8ef81dc387 /Lib/json | |
parent | abdeeff3d1fa505fa1d49970cb7a70446f3e2b75 (diff) | |
download | cpython-3dd02d62c90a169a32fb38bed34249a6cf7e1638.zip cpython-3dd02d62c90a169a32fb38bed34249a6cf7e1638.tar.gz cpython-3dd02d62c90a169a32fb38bed34249a6cf7e1638.tar.bz2 |
#10019: Fix regression relative to 2.6: add newlines if indent=0
Patch by Amaury Forgeot d'Arc, updated by Sando Tosi.
Diffstat (limited to 'Lib/json')
-rw-r--r-- | Lib/json/encoder.py | 2 | ||||
-rw-r--r-- | Lib/json/tests/test_indent.py | 16 |
2 files changed, 17 insertions, 1 deletions
diff --git a/Lib/json/encoder.py b/Lib/json/encoder.py index 1335985..accbde0 100644 --- a/Lib/json/encoder.py +++ b/Lib/json/encoder.py @@ -233,7 +233,7 @@ class JSONEncoder(object): if (_one_shot and c_make_encoder is not None - and not self.indent): + and self.indent is None): _iterencode = c_make_encoder( markers, self.default, _encoder, self.indent, self.key_separator, self.item_separator, self.sort_keys, diff --git a/Lib/json/tests/test_indent.py b/Lib/json/tests/test_indent.py index cd608d9..d45aa85 100644 --- a/Lib/json/tests/test_indent.py +++ b/Lib/json/tests/test_indent.py @@ -2,6 +2,7 @@ from unittest import TestCase import json import textwrap +from io import StringIO class TestIndent(TestCase): def test_indent(self): @@ -39,3 +40,18 @@ class TestIndent(TestCase): self.assertEqual(h1, h) self.assertEqual(h2, h) self.assertEqual(d2, expect) + + def test_indent0(self): + h = {3: 1} + def check(indent, expected): + d1 = json.dumps(h, indent=indent) + self.assertEqual(d1, expected) + + sio = StringIO() + json.dump(h, sio, indent=indent) + self.assertEqual(sio.getvalue(), expected) + + # indent=0 should emit newlines + check(0, '{\n"3": 1\n}') + # indent=None is more compact + check(None, '{"3": 1}') |