Home
last modified time | relevance | path

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

/third_party/python/Lib/
D_collections_abc.py838 return ValuesView(self)
909 class ValuesView(MappingView, Collection): class
925 ValuesView.register(dict_values)
Dtyping.py2119 ValuesView = _alias(collections.abc.ValuesView, 1) variable
/third_party/python/Doc/library/
Dcollections.abc.rst173 :class:`ValuesView` :class:`MappingView`, ``__contains__``, ``_…
288 ValuesView
Dtyping.rst1694 .. class:: ValuesView(MappingView[VT_co])
1696 A generic version of :class:`collections.abc.ValuesView`.
1699 :class:`collections.abc.ValuesView` now supports ``[]``. See :pep:`585`
Dstdtypes.rst4933 * :class:`collections.abc.ValuesView`
/third_party/python/Lib/test/
Dtest_genericalias.py71 KeysView, ItemsView, ValuesView,
Dtest_dictviews.py320 self.assertIsInstance(d.values(), collections.abc.ValuesView)
Dtest_collections.py26 from collections.abc import Mapping, MutableMapping, KeysView, ItemsView, ValuesView
1583 ValuesView({1: nan, 2: obj})
Dtest_typing.py4868 typing.ValuesView: 'ValuesView',
4906 typing.ValuesView[Any]: 'ValuesView',
/third_party/python/Misc/NEWS.d/
D3.7.0b1.rst436 collections.abc.ValuesView now inherits from collections.abc.Collection.
/third_party/python/Lib/collections/
D__init__.py69 class _OrderedDictValuesView(_collections_abc.ValuesView):