(self, other: HTTPHeaderDict)
| 426 | return f"{type(self).__name__}({dict(self.itermerged())})" |
| 427 | |
| 428 | def _copy_from(self, other: HTTPHeaderDict) -> None: |
| 429 | for key in other: |
| 430 | val = other.getlist(key) |
| 431 | self._container[key.lower()] = [key, *val] |
| 432 | |
| 433 | def copy(self) -> Self: |
| 434 | clone = type(self)() |