summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2011-04-13 01:02:45 (GMT)
committerR David Murray <rdmurray@bitdance.com>2011-04-13 01:02:45 (GMT)
commit3dd02d62c90a169a32fb38bed34249a6cf7e1638 (patch)
tree7ace2c16e725e311f9702ee6cc15de8ef81dc387 /Misc/NEWS
parentabdeeff3d1fa505fa1d49970cb7a70446f3e2b75 (diff)
downloadcpython-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 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b80bd52..af8fb29 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -51,6 +51,9 @@ Core and Builtins
Library
-------
+- Issue #10019: Fixed regression in json module where an indent of 0 stopped
+ adding newlines and acted instead like 'None'.
+
- Issue #5162: Treat services like frozen executables to allow child spawning
from multiprocessing.forking on Windows.