diff options
author | Raymond Hettinger <python@rcn.com> | 2009-03-02 22:28:31 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-03-02 22:28:31 (GMT) |
commit | a4f52b12d6e401f14f3c8e9e2d533eb448388bcc (patch) | |
tree | eaac9d0f1fdd03665b04536ec28310846ade7f49 /Misc/NEWS | |
parent | b62ad24cd8a166d0d87068ac6c6ed7fc83613f92 (diff) | |
download | cpython-a4f52b12d6e401f14f3c8e9e2d533eb448388bcc.zip cpython-a4f52b12d6e401f14f3c8e9e2d533eb448388bcc.tar.gz cpython-a4f52b12d6e401f14f3c8e9e2d533eb448388bcc.tar.bz2 |
Add OrderedDict support to collections.namedtuple().
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -177,6 +177,8 @@ Library - 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) |