Searched refs:ItemsView (Results 1 - 7 of 7) sorted by relevance
/third_party/python/Lib/ |
H A D | _collections_abc.py | 24 "MappingView", "KeysView", "ItemsView", "ValuesView", 792 return ItemsView(self) 842 class ItemsView(MappingView, Set): class 864 ItemsView.register(dict_items)
|
H A D | typing.py | 69 'ItemsView', 2724 ItemsView = _alias(collections.abc.ItemsView, 2) variable
|
/third_party/python/Lib/test/ |
H A D | test_dictviews.py | 327 self.assertIsInstance(d.items(), collections.abc.ItemsView)
|
H A D | test_genericalias.py | 112 KeysView, ItemsView, ValuesView,
|
H A D | test_collections.py | 26 from collections.abc import Mapping, MutableMapping, KeysView, ItemsView, ValuesView namespace 1600 ItemsView({1: nan, 2: obj}), 1868 self.assertIsInstance(mymap.items(), ItemsView)
|
H A D | test_typing.py | 7962 typing.ItemsView: 'ItemsView', 8000 typing.ItemsView[Any, Any]: 'ItemsView',
|
/third_party/python/Lib/collections/ |
H A D | __init__.py | 63 class _OrderedDictItemsView(_collections_abc.ItemsView):
|
Completed in 24 milliseconds