(self)
| 924 | yield chunk |
| 925 | |
| 926 | def iter_lines(self) -> typing.Iterator[str]: |
| 927 | decoder = LineDecoder() |
| 928 | with request_context(request=self._request): |
| 929 | for text in self.iter_text(): |
| 930 | for line in decoder.decode(text): |
| 931 | yield line |
| 932 | for line in decoder.flush(): |
| 933 | yield line |
| 934 | |
| 935 | def iter_raw(self, chunk_size: int | None = None) -> typing.Iterator[bytes]: |
| 936 | """ |