(self)
| 862 | return (await self._actual_headers()).headers() |
| 863 | |
| 864 | async def headers_array(self) -> HeadersArray: |
| 865 | return (await self._actual_headers()).headers_array() |
| 866 | |
| 867 | async def header_value(self, name: str) -> Optional[str]: |
| 868 | return (await self._actual_headers()).get(name) |
nothing calls this directly
no test coverage detected