summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-03-19 19:19:03 (GMT)
committerRaymond Hettinger <python@rcn.com>2009-03-19 19:19:03 (GMT)
commit91852ca673adcfa4e9ceacbb36f2cd45767efa58 (patch)
tree4b1d71bcc09823e096bc9124cb1424d12e08334c /Misc
parent2124599eaa739f66db8871d68334706f4aa373a6 (diff)
downloadcpython-91852ca673adcfa4e9ceacbb36f2cd45767efa58.zip
cpython-91852ca673adcfa4e9ceacbb36f2cd45767efa58.tar.gz
cpython-91852ca673adcfa4e9ceacbb36f2cd45767efa58.tar.bz2
Issue 5381: Add object_pairs_hook to the json module.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d3abb41..09bbc7a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -181,6 +181,9 @@ Core and Builtins
Library
-------
+- Issue #5381: Added object_pairs_hook to the json module. This allows
+ OrderedDicts to be built by the decoder.
+
- Issue #2110: Add support for thousands separator and 'n' type
specifier to Decimal.__format__