Home
last modified time | relevance | path

Searched refs:KeysView (Results 1 – 14 of 14) sorted by relevance

/external/python/funcsigs/funcsigs/
Dodict.py13 from _abcoll import KeysView, ValuesView, ItemsView
253 return KeysView(self)
/external/python/cpython3/Lib/
D_collections_abc.py674 return KeysView(self)
708 class KeysView(MappingView, Set): class
722 KeysView.register(dict_keys)
Dtyping.py1238 KeysView = _alias(collections.abc.KeysView, KT) variable
/external/python/cpython2/Lib/
D_abcoll.py443 class KeysView(MappingView, Set): class
456 KeysView.register(type({}.viewkeys()))
Dcollections.py236 return KeysView(self)
/external/python/cpython3/Doc/library/
Dcollections.abc.rst88 :class:`KeysView` :class:`MappingView`, ``__contains__``,
177 KeysView
Dtyping.rst635 .. class:: KeysView(MappingView[KT_co], AbstractSet[KT_co])
637 A generic version of :class:`collections.abc.KeysView`.
/external/python/cpython2/Lib/test/
Dtest_dictviews.py192 self.assertIsInstance(d.viewkeys(), collections.KeysView)
/external/python/cpython3/Lib/test/
Dtest_dictviews.py267 self.assertIsInstance(d.keys(), collections.abc.KeysView)
Dtest_collections.py26 from collections.abc import Mapping, MutableMapping, KeysView, ItemsView, ValuesView
1611 self.assertIsInstance(mymap.keys(), KeysView)
/external/python/cpython2/Doc/library/
Dcollections.rst941 :class:`KeysView` :class:`MappingView`, ``__contains__``,
982 KeysView
/external/python/cpython3/Lib/collections/
D__init__.py61 class _OrderedDictKeysView(_collections_abc.KeysView):
/external/python/cpython2/Misc/NEWS.d/
D2.7.1rc1.rst723 Set operations on KeysView or ItemsView in the collections module now
/external/python/cpython3/Misc/
DHISTORY12366 - Issue #9214: Set operations on a KeysView or ItemsView in collections now