commit | 917bba1f2a382d5251b94eeadc344ec6ed3eaa97 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Sun Aug 22 08:01:58 2010 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Sun Aug 22 08:01:58 2010 +0000 |
tree | dd89a8e06736c0618f0a3f26de8501790a2f059a | |
parent | 058981b2ec2d96d58aea3fc285fee062a32a5854 [diff] [blame] |
Issue #9214: Fix set operations on KeysView and ItemsView.
diff --git a/Misc/NEWS b/Misc/NEWS index e10f33d..d4fb9f2 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -31,6 +31,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.