summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-03-02 23:06:00 (GMT)
committerRaymond Hettinger <python@rcn.com>2009-03-02 23:06:00 (GMT)
commit0663a1ed793c164fb11d3dd62bebc677e260891e (patch)
tree1f56f1dcc13dc07301c7d0c32d2d04d49b6f1afb /Misc/NEWS
parent6accb988a1822dc2927346ae4819aff8cc876b98 (diff)
downloadcpython-0663a1ed793c164fb11d3dd62bebc677e260891e.zip
cpython-0663a1ed793c164fb11d3dd62bebc677e260891e.tar.gz
cpython-0663a1ed793c164fb11d3dd62bebc677e260891e.tar.bz2
Let configparser use ordered dicts by default.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7a3c96f..91c94ff 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -179,6 +179,8 @@ Library
- The _asdict() for method for namedtuples now returns an OrderedDict().
+- configparser now defaults to using an ordered dictionary.
+
- Issue #1733986: Fixed mmap crash in accessing elements of second map object
with same tagname but larger size than first map. (Windows)