MCPcopy Index your code
hub / github.com/python/cpython / items

Method items

Lib/collections/__init__.py:234–236  ·  view source on GitHub ↗

D.items() -> a set-like object providing a view on D's items

(self)

Source from the content-addressed store, hash-verified

232 return _OrderedDictKeysView(self)
233
234 def items(self):
235 "D.items() -> a set-like object providing a view on D's items"
236 return _OrderedDictItemsView(self)
237
238 def values(self):
239 "D.values() -> an object providing a view on D's values"

Callers 15

__repr__Method · 0.95
__reduce__Method · 0.95
test_ordered_dictMethod · 0.95
test_namespace_orderMethod · 0.95
test_dict_copy_orderMethod · 0.95
test_initMethod · 0.95
test_468Method · 0.95
test_updateMethod · 0.95
test_delitemMethod · 0.95
test_setitemMethod · 0.95
test_iteratorsMethod · 0.95
test_sorted_iteratorsMethod · 0.95

Calls 1

Tested by 15

test_ordered_dictMethod · 0.76
test_namespace_orderMethod · 0.76
test_dict_copy_orderMethod · 0.76
test_initMethod · 0.76
test_468Method · 0.76
test_updateMethod · 0.76
test_delitemMethod · 0.76
test_setitemMethod · 0.76
test_iteratorsMethod · 0.76
test_sorted_iteratorsMethod · 0.76
test_iterators_emptyMethod · 0.76