Searched refs:ItemsView (Results 1 – 14 of 14) sorted by relevance
/external/python/funcsigs/funcsigs/ |
D | odict.py | 13 from _abcoll import KeysView, ValuesView, ItemsView 261 return ItemsView(self)
|
/external/python/cpython3/Lib/ |
D | _collections_abc.py | 678 return ItemsView(self) 725 class ItemsView(MappingView, Set): class 746 ItemsView.register(dict_items)
|
D | typing.py | 1239 ItemsView = _alias(collections.abc.ItemsView, (KT, VT_co)) 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/cpython3/Doc/library/ |
D | collections.abc.rst | 86 :class:`ItemsView` :class:`MappingView`, ``__contains__``, 176 ItemsView
|
D | typing.rst | 639 .. class:: ItemsView(MappingView, Generic[KT_co, VT_co]) 641 A generic version of :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_dictviews.py | 278 self.assertIsInstance(d.items(), collections.abc.ItemsView)
|
D | test_collections.py | 26 from collections.abc import Mapping, MutableMapping, KeysView, ItemsView, ValuesView 1416 ItemsView({1: nan, 2: obj}), 1613 self.assertIsInstance(mymap.items(), 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 | 66 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
|