commit | 0e708a1b79d644f313111ec02c9e9be500b3754f | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Sun Aug 22 07:56:20 2010 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Sun Aug 22 07:56:20 2010 +0000 |
tree | 2f5d44afb747c09502e0e89dd37939f0668e9874 | |
parent | d5c190d20863148a0ee3550bbd5d902c32910120 [diff] [blame] |
Issue #9214: Fix set operations on KeysView and ItemsView.
diff --git a/Misc/NEWS b/Misc/NEWS index 9a48c5e..d88a483 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -95,6 +95,9 @@ 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.