(self)
| 292 | return {"Content-Length": str(content_length), "Content-Type": content_type} |
| 293 | |
| 294 | def __iter__(self) -> typing.Iterator[bytes]: |
| 295 | for chunk in self.iter_chunks(): |
| 296 | yield chunk |
| 297 | |
| 298 | async def __aiter__(self) -> typing.AsyncIterator[bytes]: |
| 299 | for chunk in self.iter_chunks(): |
nothing calls this directly
no test coverage detected