MCPcopy
hub / github.com/pallets/werkzeug / listvalues

Method listvalues

src/werkzeug/datastructures/structures.py:706–708  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

704 ptr = ptr.next
705
706 def listvalues(self) -> cabc.Iterable[list[V]]:
707 for _key, values in self.lists():
708 yield values
709
710 def add(self, key: K, value: V) -> None:
711 dict.setdefault(self, key, []).append(_omd_bucket(self, key, value)) # type: ignore[misc]

Callers

nothing calls this directly

Calls 1

listsMethod · 0.95

Tested by

no test coverage detected