diff options
author | Raymond Hettinger <python@rcn.com> | 2010-08-17 19:03:06 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-08-17 19:03:06 (GMT) |
commit | a54b2dac90d3505176bdc589ee1ef09ff2b7113a (patch) | |
tree | f387c94ad32f5c5b129783f88801b5891b416d79 /Misc/NEWS | |
parent | d9ed62cde30fea0c25d3e6790d2506e7367ccdf7 (diff) | |
download | cpython-a54b2dac90d3505176bdc589ee1ef09ff2b7113a.zip cpython-a54b2dac90d3505176bdc589ee1ef09ff2b7113a.tar.gz cpython-a54b2dac90d3505176bdc589ee1ef09ff2b7113a.tar.bz2 |
Issue #9626: Fix views in collections.OrderedDict().
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -29,6 +29,10 @@ Core and Builtins Library ------- +- Issue #9626: the view methods for collections.OrderedDict() were returning + the unordered versions inherited from dict. Those methods are now + overridden to provide ordered views. + - Issue #8688: MANIFEST files created by distutils now include a magic comment indicating they are generated. Manually maintained MANIFESTs without this marker will not be overwritten or removed. |