summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-03-03 05:00:37 (GMT)
committerRaymond Hettinger <python@rcn.com>2009-03-03 05:00:37 (GMT)
commite89b8e98327da833f92299e1876d2903b6e585ca (patch)
tree1d7d50611390dcea9ad6674aee499f7c91c0c5fc /Misc
parent88a9164cdba48dba05b6ebe1076ba641b4a50ffa (diff)
downloadcpython-e89b8e98327da833f92299e1876d2903b6e585ca.zip
cpython-e89b8e98327da833f92299e1876d2903b6e585ca.tar.gz
cpython-e89b8e98327da833f92299e1876d2903b6e585ca.tar.bz2
Backport 70111: Let configparser use ordered dicts by default.
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 70160bb..d91164f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -172,6 +172,8 @@ Library
- The _asdict() for method for namedtuples now returns an OrderedDict().
+- The configparser module now defaults to using an ordered dictionary.
+
- Issue #4308: httplib.IncompleteRead's repr doesn't include all of the data all
ready received.