Searched refs:ItemsView (Results 1 – 11 of 11) sorted by relevance
/third_party/python/Lib/ |
D | _collections_abc.py | 834 return ItemsView(self) 884 class ItemsView(MappingView, Set): class 906 ItemsView.register(dict_items)
|
D | typing.py | 2118 ItemsView = _alias(collections.abc.ItemsView, 2) variable
|
/third_party/python/Doc/library/ |
D | collections.abc.rst | 169 :class:`ItemsView` :class:`MappingView`, ``__contains__``, 286 ItemsView
|
D | typing.rst | 1626 .. class:: ItemsView(MappingView, Generic[KT_co, VT_co]) 1628 A generic version of :class:`collections.abc.ItemsView`. 1631 :class:`collections.abc.ItemsView` now supports ``[]``. See :pep:`585`
|
D | stdtypes.rst | 4932 * :class:`collections.abc.ItemsView`
|
/third_party/python/Lib/test/ |
D | test_genericalias.py | 71 KeysView, ItemsView, ValuesView,
|
D | test_dictviews.py | 324 self.assertIsInstance(d.items(), collections.abc.ItemsView)
|
D | test_collections.py | 26 from collections.abc import Mapping, MutableMapping, KeysView, ItemsView, ValuesView 1582 ItemsView({1: nan, 2: obj}), 1847 self.assertIsInstance(mymap.items(), ItemsView)
|
D | test_typing.py | 4851 typing.ItemsView: 'ItemsView', 4889 typing.ItemsView[Any, Any]: 'ItemsView',
|
/third_party/python/Lib/collections/ |
D | __init__.py | 63 class _OrderedDictItemsView(_collections_abc.ItemsView):
|
/third_party/python/Misc/ |
D | HISTORY | 12366 - Issue #9214: Set operations on a KeysView or ItemsView in collections now
|