Convert the headers into a list suitable for WSGI. :return: list
(self)
| 559 | return self |
| 560 | |
| 561 | def to_wsgi_list(self) -> list[tuple[str, str]]: |
| 562 | """Convert the headers into a list suitable for WSGI. |
| 563 | |
| 564 | :return: list |
| 565 | """ |
| 566 | return list(self) |
| 567 | |
| 568 | def copy(self) -> te.Self: |
| 569 | return self.__class__(self._list) |