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

Method __init__

src/werkzeug/datastructures/structures.py:842–844  ·  view source on GitHub ↗
(self, dicts: cabc.Iterable[MultiDict[K, V]] | None = None)

Source from the content-addressed store, hash-verified

840 return type(self), (self.dicts,)
841
842 def __init__(self, dicts: cabc.Iterable[MultiDict[K, V]] | None = None) -> None:
843 super().__init__()
844 self.dicts: list[MultiDict[K, V]] = list(dicts or ())
845
846 @classmethod
847 def fromkeys(cls, keys: t.Any, value: t.Any = None) -> t.NoReturn:

Callers

nothing calls this directly

Calls 2

listFunction · 0.50
__init__Method · 0.45

Tested by

no test coverage detected