summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-08-17 19:03:06 (GMT)
committerRaymond Hettinger <python@rcn.com>2010-08-17 19:03:06 (GMT)
commita54b2dac90d3505176bdc589ee1ef09ff2b7113a (patch)
treef387c94ad32f5c5b129783f88801b5891b416d79 /Misc/NEWS
parentd9ed62cde30fea0c25d3e6790d2506e7367ccdf7 (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 09f651a..e8b68e0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.