commit | a4f52b12d6e401f14f3c8e9e2d533eb448388bcc | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Mon Mar 02 22:28:31 2009 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Mon Mar 02 22:28:31 2009 +0000 |
tree | eaac9d0f1fdd03665b04536ec28310846ade7f49 | |
parent | b62ad24cd8a166d0d87068ac6c6ed7fc83613f92 [diff] [blame] |
Add OrderedDict support to collections.namedtuple().
diff --git a/Misc/NEWS b/Misc/NEWS index 85816a1..7a3c96f 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -177,6 +177,8 @@ - PEP 372: Added collections.OrderedDict(). +- The _asdict() for method for namedtuples now returns an OrderedDict(). + - Issue #1733986: Fixed mmap crash in accessing elements of second map object with same tagname but larger size than first map. (Windows)