Searched refs:ItemsView (Results 1 – 17 of 17) sorted by relevance
/external/python/cpython3/Lib/ |
D | _collections_abc.py | 837 return ItemsView(self) 887 class ItemsView(MappingView, Set): class 909 ItemsView.register(dict_items)
|
D | typing.py | 2139 ItemsView = _alias(collections.abc.ItemsView, 2) variable
|
/external/python/cpython2/Lib/ |
D | _abcoll.py | 458 class ItemsView(MappingView, Set): class 477 ItemsView.register(type({}.viewitems()))
|
D | collections.py | 244 return ItemsView(self)
|
/external/python/pyfakefs/pyfakefs/ |
D | fake_filesystem_unittest.py | 50 AnyStr, Type, Iterator, cast, ItemsView, Sequence 670 self, module_items: ItemsView[str, FunctionType]) -> None:
|
/external/python/cpython3/Doc/library/ |
D | collections.abc.rst | 169 :class:`ItemsView` :class:`MappingView`, ``__contains__``, 286 ItemsView
|
D | typing.rst | 1715 .. class:: ItemsView(MappingView, Generic[KT_co, VT_co]) 1717 A generic version of :class:`collections.abc.ItemsView`. 1720 :class:`collections.abc.ItemsView` now supports ``[]``. See :pep:`585`
|
D | stdtypes.rst | 4954 * :class:`collections.abc.ItemsView`
|
/external/python/cpython2/Lib/test/ |
D | test_dictviews.py | 203 self.assertIsInstance(d.viewitems(), collections.ItemsView)
|
/external/python/cpython3/Lib/test/ |
D | test_genericalias.py | 71 KeysView, ItemsView, ValuesView,
|
D | test_dictviews.py | 324 self.assertIsInstance(d.items(), collections.abc.ItemsView)
|
D | test_collections.py | 26 from collections.abc import Mapping, MutableMapping, KeysView, ItemsView, ValuesView 1582 ItemsView({1: nan, 2: obj}), 1847 self.assertIsInstance(mymap.items(), ItemsView)
|
D | test_typing.py | 5130 typing.ItemsView: 'ItemsView', 5168 typing.ItemsView[Any, Any]: 'ItemsView',
|
/external/python/cpython2/Doc/library/ |
D | collections.rst | 939 :class:`ItemsView` :class:`MappingView`, ``__contains__``, 981 ItemsView
|
/external/python/cpython3/Lib/collections/ |
D | __init__.py | 63 class _OrderedDictItemsView(_collections_abc.ItemsView):
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.1rc1.rst | 723 Set operations on KeysView or ItemsView in the collections module now
|
/external/python/cpython3/Misc/ |
D | HISTORY | 12366 - Issue #9214: Set operations on a KeysView or ItemsView in collections now
|