summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2022-12-17 12:32:48 (GMT)
committerGitHub <noreply@github.com>2022-12-17 12:32:48 (GMT)
commit0fe61d0838218b18bcff4bf434beba3e8dbcc42b (patch)
tree54d1b62faa69456c80603aeba76953e0f4749a66 /Misc
parent2b38a9aa747785f6d540e95e6846d6510de6b306 (diff)
downloadcpython-0fe61d0838218b18bcff4bf434beba3e8dbcc42b.zip
cpython-0fe61d0838218b18bcff4bf434beba3e8dbcc42b.tar.gz
cpython-0fe61d0838218b18bcff4bf434beba3e8dbcc42b.tar.bz2
gh-100272: Fix JSON serialization of OrderedDict (GH-100273)
It now preserves the order of keys.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2022-12-15-18-28-13.gh-issue-100272.D1O9Ey.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-12-15-18-28-13.gh-issue-100272.D1O9Ey.rst b/Misc/NEWS.d/next/Library/2022-12-15-18-28-13.gh-issue-100272.D1O9Ey.rst
new file mode 100644
index 0000000..2fb0892
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-12-15-18-28-13.gh-issue-100272.D1O9Ey.rst
@@ -0,0 +1 @@
+Fix JSON serialization of OrderedDict. It now preserves the order of keys.