diff options
author | Raymond Hettinger <python@rcn.com> | 2010-08-22 07:56:20 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-08-22 07:56:20 (GMT) |
commit | 0e708a1b79d644f313111ec02c9e9be500b3754f (patch) | |
tree | 2f5d44afb747c09502e0e89dd37939f0668e9874 /Lib | |
parent | d5c190d20863148a0ee3550bbd5d902c32910120 (diff) | |
download | cpython-0e708a1b79d644f313111ec02c9e9be500b3754f.zip cpython-0e708a1b79d644f313111ec02c9e9be500b3754f.tar.gz cpython-0e708a1b79d644f313111ec02c9e9be500b3754f.tar.bz2 |
Issue #9214: Fix set operations on KeysView and ItemsView.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/_abcoll.py | 8 | ||||
-rw-r--r-- | Lib/test/test_collections.py | 27 |
2 files changed, 34 insertions, 1 deletions
diff --git a/Lib/_abcoll.py b/Lib/_abcoll.py index 7890e97..d3e23c1 100644 --- a/Lib/_abcoll.py +++ b/Lib/_abcoll.py @@ -393,6 +393,10 @@ class MappingView(Sized): class KeysView(MappingView, Set): + @classmethod + def _from_iterable(self, it): + return set(it) + def __contains__(self, key): return key in self._mapping @@ -405,6 +409,10 @@ KeysView.register(dict_keys) class ItemsView(MappingView, Set): + @classmethod + def _from_iterable(self, it): + return set(it) + def __contains__(self, item): key, value = item try: diff --git a/Lib/test/test_collections.py b/Lib/test/test_collections.py index 85bf248..be41fcd 100644 --- a/Lib/test/test_collections.py +++ b/Lib/test/test_collections.py @@ -13,7 +13,7 @@ import re from collections import Hashable, Iterable, Iterator from collections import Sized, Container, Callable from collections import Set, MutableSet -from collections import Mapping, MutableMapping +from collections import Mapping, MutableMapping, KeysView, ItemsView, UserDict from collections import Sequence, MutableSequence from collections import ByteString @@ -516,6 +516,31 @@ class TestCollectionABCs(ABCTestCase): self.validate_abstract_methods(MutableMapping, '__contains__', '__iter__', '__len__', '__getitem__', '__setitem__', '__delitem__') + def test_MutableMapping_subclass(self): + # Test issue 9214 + mymap = UserDict() + mymap['red'] = 5 + self.assert_(isinstance(mymap.keys(), Set)) + self.assert_(isinstance(mymap.keys(), KeysView)) + self.assert_(isinstance(mymap.items(), Set)) + self.assert_(isinstance(mymap.items(), ItemsView)) + + mymap = UserDict() + mymap['red'] = 5 + z = mymap.keys() | {'orange'} + self.assertEqual(type(z), set) + list(z) + mymap['blue'] = 7 # Shouldn't affect 'z' + self.assertEqual(sorted(z), ['orange', 'red']) + + mymap = UserDict() + mymap['red'] = 5 + z = mymap.items() | {('orange', 3)} + self.assertEqual(type(z), set) + list(z) + mymap['blue'] = 7 # Shouldn't affect 'z' + self.assertEqual(sorted(z), [('orange', 3), ('red', 5)]) + def test_Sequence(self): for sample in [tuple, list, bytes, str]: self.assertTrue(isinstance(sample(), Sequence)) |