summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-10-30 07:29:44 (GMT)
committerRaymond Hettinger <python@rcn.com>2010-10-30 07:29:44 (GMT)
commitcbba8d4c7a5b77ef60c088b5070b919b32a1b861 (patch)
tree7c2b4561d548e954073f0e34807e04db19d0d484 /Misc
parent5306234655e6d7f398761214bf0e71491c3c7211 (diff)
downloadcpython-cbba8d4c7a5b77ef60c088b5070b919b32a1b861.zip
cpython-cbba8d4c7a5b77ef60c088b5070b919b32a1b861.tar.gz
cpython-cbba8d4c7a5b77ef60c088b5070b919b32a1b861.tar.bz2
Backport r72961 fixing issue #6105: json.dumps not following OrderedDict iteration order.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 665271e..eeff4a7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -63,6 +63,8 @@ Core and Builtins
Library
-------
+- Issue #6105: json.dumps now respects OrderedDict's iteration order.
+
- Issue #9295: Fix a crash under Windows when calling close() on a file
object with custom buffering from two threads at once.