summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2016-09-19 04:45:11 (GMT)
committerRaymond Hettinger <python@rcn.com>2016-09-19 04:45:11 (GMT)
commit7eb1becc2502723ebcdcc56972e41c03ef80d6af (patch)
tree904f60ee0ff01a8be376642190613344ef297459 /Misc
parent96b2dd5997735f417526758cbe3ab497850baf71 (diff)
downloadcpython-7eb1becc2502723ebcdcc56972e41c03ef80d6af.zip
cpython-7eb1becc2502723ebcdcc56972e41c03ef80d6af.tar.gz
cpython-7eb1becc2502723ebcdcc56972e41c03ef80d6af.tar.bz2
Issue #28189: dictitems_contains no longer swallows compare errors.
(Patch by Xiang Zhang)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c23ec97..a0dccdb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -19,6 +19,9 @@ Core and Builtins
- Issue #25758: Prevents zipimport from unnecessarily encoding a filename
(patch by Eryk Sun)
+- Issue #28189: dictitems_contains no longer swallows compare errors.
+ (Patch by Xiang Zhang)
+
- Issue #27812: Properly clear out a generator's frame's backreference to the
generator to prevent crashes in frame.clear().