(self, other: Mapping[str, str])
| 618 | return self |
| 619 | |
| 620 | def __or__(self, other: Mapping[str, str]) -> MutableHeaders: |
| 621 | if not isinstance(other, Mapping): |
| 622 | raise TypeError(f"Expected a mapping but got {other.__class__.__name__}") |
| 623 | new = self.mutablecopy() |
| 624 | new.update(other) |
| 625 | return new |
| 626 | |
| 627 | @property |
| 628 | def raw(self) -> list[tuple[bytes, bytes]]: |
nothing calls this directly
no test coverage detected