Searched refs:KeysView (Results 1 – 14 of 14) sorted by relevance
/external/python/funcsigs/funcsigs/ |
D | odict.py | 13 from _abcoll import KeysView, ValuesView, ItemsView 253 return KeysView(self)
|
/external/python/cpython3/Lib/ |
D | _collections_abc.py | 674 return KeysView(self) 708 class KeysView(MappingView, Set): class 722 KeysView.register(dict_keys)
|
D | typing.py | 1238 KeysView = _alias(collections.abc.KeysView, KT) variable
|
/external/python/cpython2/Lib/ |
D | _abcoll.py | 443 class KeysView(MappingView, Set): class 456 KeysView.register(type({}.viewkeys()))
|
D | collections.py | 236 return KeysView(self)
|
/external/python/cpython3/Doc/library/ |
D | collections.abc.rst | 88 :class:`KeysView` :class:`MappingView`, ``__contains__``, 177 KeysView
|
D | typing.rst | 635 .. class:: KeysView(MappingView[KT_co], AbstractSet[KT_co]) 637 A generic version of :class:`collections.abc.KeysView`.
|
/external/python/cpython2/Lib/test/ |
D | test_dictviews.py | 192 self.assertIsInstance(d.viewkeys(), collections.KeysView)
|
/external/python/cpython3/Lib/test/ |
D | test_dictviews.py | 267 self.assertIsInstance(d.keys(), collections.abc.KeysView)
|
D | test_collections.py | 26 from collections.abc import Mapping, MutableMapping, KeysView, ItemsView, ValuesView 1611 self.assertIsInstance(mymap.keys(), KeysView)
|
/external/python/cpython2/Doc/library/ |
D | collections.rst | 941 :class:`KeysView` :class:`MappingView`, ``__contains__``, 982 KeysView
|
/external/python/cpython3/Lib/collections/ |
D | __init__.py | 61 class _OrderedDictKeysView(_collections_abc.KeysView):
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.1rc1.rst | 723 Set operations on KeysView or ItemsView in the collections module now
|
/external/python/cpython3/Misc/ |
D | HISTORY | 12366 - Issue #9214: Set operations on a KeysView or ItemsView in collections now
|