Home
last modified time | relevance | path

Searched refs:ValuesView (Results 1 – 13 of 13) sorted by relevance

/external/python/funcsigs/funcsigs/
Dodict.py13 from _abcoll import KeysView, ValuesView, ItemsView
257 return ValuesView(self)
/external/python/cpython3/Lib/
D_collections_abc.py682 return ValuesView(self)
749 class ValuesView(MappingView, Collection): class
764 ValuesView.register(dict_values)
Dtyping.py1240 ValuesView = _alias(collections.abc.ValuesView, VT_co) variable
/external/python/cpython2/Lib/
D_abcoll.py479 class ValuesView(MappingView): class
491 ValuesView.register(type({}.viewvalues()))
Dcollections.py240 return ValuesView(self)
/external/python/cpython3/Doc/library/
Dcollections.abc.rst90 :class:`ValuesView` :class:`MappingView`, ``__contains__``, ``__ite…
178 ValuesView
Dtyping.rst643 .. class:: ValuesView(MappingView[VT_co])
645 A generic version of :class:`collections.abc.ValuesView`.
/external/python/cpython2/Lib/test/
Dtest_dictviews.py199 self.assertIsInstance(d.viewvalues(), collections.ValuesView)
/external/python/cpython3/Lib/test/
Dtest_dictviews.py274 self.assertIsInstance(d.values(), collections.abc.ValuesView)
Dtest_collections.py26 from collections.abc import Mapping, MutableMapping, KeysView, ItemsView, ValuesView
1417 ValuesView({1: nan, 2: obj})
/external/python/cpython3/Misc/NEWS.d/
D3.7.0b1.rst437 collections.abc.ValuesView now inherits from collections.abc.Collection.
/external/python/cpython2/Doc/library/
Dcollections.rst943 :class:`ValuesView` :class:`MappingView` ``__contains__``, ``__ite…
983 ValuesView
/external/python/cpython3/Lib/collections/
D__init__.py72 class _OrderedDictValuesView(_collections_abc.ValuesView):