MCPcopy Index your code
hub / github.com/fluentpython/example-code-2e / iterallitems

Method iterallitems

21-async/mojifinder/bottle.py:1855–1856  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1853 def iteritems(self):
1854 return ((k, v[-1]) for k, v in self.dict.iteritems())
1855 def iterallitems(self):
1856 return ((k, v) for k, vl in self.dict.iteritems() for v in vl)
1857 def allitems(self):
1858 return [(k, v) for k, vl in self.dict.iteritems() for v in vl]
1859

Callers

nothing calls this directly

Calls 1

iteritemsMethod · 0.80

Tested by

no test coverage detected