summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-04 20:05:38 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-04 20:05:38 (GMT)
commitb45b7b213742261c95324766027d44e30656b8e7 (patch)
tree2cf155f3914de3220bdf478d4dc3250a2c9bbaaf /Misc
parentb25d09a15e58a5339d9720a9c99e48a3b144e1d7 (diff)
downloadcpython-b45b7b213742261c95324766027d44e30656b8e7.zip
cpython-b45b7b213742261c95324766027d44e30656b8e7.tar.gz
cpython-b45b7b213742261c95324766027d44e30656b8e7.tar.bz2
Issue #25449: Iterating OrderedDict with keys with unstable hash now raises
KeyError in C implementations as well as in Python implementation. Added tests for OrderedDict subclasses.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9626c49..bf1f521 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -11,6 +11,9 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #25449: Iterating OrderedDict with keys with unstable hash now raises
+ KeyError in C implementations as well as in Python implementation.
+
- Issue #25395: Fixed crash when highly nested OrderedDict structures were
garbage collected.
@@ -333,6 +336,8 @@ Documentation
Tests
-----
+- Issue #25449: Added tests for OrderedDict subclasses.
+
- Issue #25099: Make test_compileall not fail when an entry on sys.path cannot
be written to (commonly seen in administrative installs on Windows).