(self, dicts: cabc.Iterable[MultiDict[K, V]] | None = None)
| 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: |