Home
last modified time | relevance | path

Searched refs:MappingView (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Lib/
D_abcoll.py431 class MappingView(Sized): class
443 class KeysView(MappingView, Set):
458 class ItemsView(MappingView, Set):
479 class ValuesView(MappingView):
/external/python/cpython2/Lib/test/
Dtest_dictviews.py178 self.assertIsInstance(d.viewkeys(), collections.MappingView)
185 self.assertIsInstance(d.viewvalues(), collections.MappingView)
189 self.assertIsInstance(d.viewitems(), collections.MappingView)
/external/python/cpython2/Doc/library/
Dcollections.rst934 :class:`MappingView` :class:`Sized` ``__len__``
935 :class:`ItemsView` :class:`MappingView`, ``__contains__``,
937 :class:`KeysView` :class:`MappingView`, ``__contains__``,
939 :class:`ValuesView` :class:`MappingView` ``__contains__``, ``__ite…
976 .. class:: MappingView
/external/python/cpython2/Misc/
DNEWS984 - Issue #24286: Dict view were not registered with the MappingView abstract