summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-08-22 07:56:20 (GMT)
committerRaymond Hettinger <python@rcn.com>2010-08-22 07:56:20 (GMT)
commit0e708a1b79d644f313111ec02c9e9be500b3754f (patch)
tree2f5d44afb747c09502e0e89dd37939f0668e9874 /Misc
parentd5c190d20863148a0ee3550bbd5d902c32910120 (diff)
downloadcpython-0e708a1b79d644f313111ec02c9e9be500b3754f.zip
cpython-0e708a1b79d644f313111ec02c9e9be500b3754f.tar.gz
cpython-0e708a1b79d644f313111ec02c9e9be500b3754f.tar.bz2
Issue #9214: Fix set operations on KeysView and ItemsView.
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 9a48c5e..d88a483 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -95,6 +95,9 @@ C-API
Library
-------
+- Issue #9214: Set operations on KeysView or ItemsView in the collections
+ module now correctly return a set. (Patch by Eli Bendersky.)
+
- Issue #9617: Signals received during a low-level write operation aren't
ignored by the buffered IO layer anymore.