MCPcopy Index your code
hub / github.com/RustPython/RustPython / items

Method items

Lib/collections/__init__.py:235–237  ·  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

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

Callers 15

__repr__Method · 0.95
__reduce__Method · 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
test_iterators_emptyMethod · 0.95

Calls 1

Tested by 15

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
test_setdefaultMethod · 0.76