Home
last modified time | relevance | path

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

/external/python/funcsigs/funcsigs/
Dodict.py13 from _abcoll import KeysView, ValuesView, ItemsView
261 return ItemsView(self)
/external/python/cpython3/Lib/
D_collections_abc.py678 return ItemsView(self)
725 class ItemsView(MappingView, Set): class
746 ItemsView.register(dict_items)
Dtyping.py1239 ItemsView = _alias(collections.abc.ItemsView, (KT, VT_co)) variable
/external/python/cpython2/Lib/
D_abcoll.py458 class ItemsView(MappingView, Set): class
477 ItemsView.register(type({}.viewitems()))
Dcollections.py244 return ItemsView(self)
/external/python/cpython3/Doc/library/
Dcollections.abc.rst86 :class:`ItemsView` :class:`MappingView`, ``__contains__``,
176 ItemsView
Dtyping.rst639 .. class:: ItemsView(MappingView, Generic[KT_co, VT_co])
641 A generic version of :class:`collections.abc.ItemsView`.
/external/python/cpython2/Lib/test/
Dtest_dictviews.py203 self.assertIsInstance(d.viewitems(), collections.ItemsView)
/external/python/cpython3/Lib/test/
Dtest_dictviews.py278 self.assertIsInstance(d.items(), collections.abc.ItemsView)
Dtest_collections.py26 from collections.abc import Mapping, MutableMapping, KeysView, ItemsView, ValuesView
1416 ItemsView({1: nan, 2: obj}),
1613 self.assertIsInstance(mymap.items(), ItemsView)
/external/python/cpython2/Doc/library/
Dcollections.rst939 :class:`ItemsView` :class:`MappingView`, ``__contains__``,
981 ItemsView
/external/python/cpython3/Lib/collections/
D__init__.py66 class _OrderedDictItemsView(_collections_abc.ItemsView):
/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