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

Method items

Lib/test/test_dict.py:1429–1430  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1427 __iter__ = keys
1428
1429 def items(self):
1430 return reversed(dict.items(self))
1431
1432 d = CustomReversedDict(pairs)
1433 self.assertEqual(pairs[::-1], list(dict(d).items()))

Calls

no outgoing calls

Tested by

no test coverage detected