Home
last modified time | relevance | path

Searched refs:ItemsView (Results 1 – 11 of 11) sorted by relevance

/third_party/python/Lib/
D_collections_abc.py834 return ItemsView(self)
884 class ItemsView(MappingView, Set): class
906 ItemsView.register(dict_items)
Dtyping.py2118 ItemsView = _alias(collections.abc.ItemsView, 2) variable
/third_party/python/Doc/library/
Dcollections.abc.rst169 :class:`ItemsView` :class:`MappingView`, ``__contains__``,
286 ItemsView
Dtyping.rst1626 .. 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`
Dstdtypes.rst4932 * :class:`collections.abc.ItemsView`
/third_party/python/Lib/test/
Dtest_genericalias.py71 KeysView, ItemsView, ValuesView,
Dtest_dictviews.py324 self.assertIsInstance(d.items(), collections.abc.ItemsView)
Dtest_collections.py26 from collections.abc import Mapping, MutableMapping, KeysView, ItemsView, ValuesView
1582 ItemsView({1: nan, 2: obj}),
1847 self.assertIsInstance(mymap.items(), ItemsView)
Dtest_typing.py4851 typing.ItemsView: 'ItemsView',
4889 typing.ItemsView[Any, Any]: 'ItemsView',
/third_party/python/Lib/collections/
D__init__.py63 class _OrderedDictItemsView(_collections_abc.ItemsView):
/third_party/python/Misc/
DHISTORY12366 - Issue #9214: Set operations on a KeysView or ItemsView in collections now