Searched refs:KeysView (Results 1 – 11 of 11) sorted by relevance
/third_party/python/Lib/ |
D | _collections_abc.py | 830 return KeysView(self) 866 class KeysView(MappingView, Set): class 881 KeysView.register(dict_keys)
|
D | typing.py | 2117 KeysView = _alias(collections.abc.KeysView, 1) variable
|
/third_party/python/Doc/library/ |
D | collections.abc.rst | 171 :class:`KeysView` :class:`MappingView`, ``__contains__``, 287 KeysView
|
D | typing.rst | 1634 .. class:: KeysView(MappingView[KT_co], AbstractSet[KT_co]) 1636 A generic version of :class:`collections.abc.KeysView`. 1639 :class:`collections.abc.KeysView` now supports ``[]``. See :pep:`585`
|
D | stdtypes.rst | 4931 * :class:`collections.abc.KeysView`
|
/third_party/python/Lib/test/ |
D | test_genericalias.py | 71 KeysView, ItemsView, ValuesView,
|
D | test_dictviews.py | 313 self.assertIsInstance(d.keys(), collections.abc.KeysView)
|
D | test_collections.py | 26 from collections.abc import Mapping, MutableMapping, KeysView, ItemsView, ValuesView 1845 self.assertIsInstance(mymap.keys(), KeysView)
|
D | test_typing.py | 4854 typing.KeysView: 'KeysView', 4892 typing.KeysView[Any]: 'KeysView',
|
/third_party/python/Lib/collections/ |
D | __init__.py | 58 class _OrderedDictKeysView(_collections_abc.KeysView):
|
/third_party/python/Misc/ |
D | HISTORY | 12366 - Issue #9214: Set operations on a KeysView or ItemsView in collections now
|