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

Method values

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

Source from the content-addressed store, hash-verified

1837
1838 if py3k:
1839 def values(self): return (v[-1] for v in self.dict.values())
1840 def items(self): return ((k, v[-1]) for k, v in self.dict.items())
1841 def allitems(self):
1842 return ((k, v) for k, vl in self.dict.items() for v in vl)

Callers 6

insert_recordFunction · 0.80
update_recordFunction · 0.80
__iter__Method · 0.80
cookiesMethod · 0.80
headerlistMethod · 0.80
runMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected