(self)
| 292 | """ |
| 293 | |
| 294 | def __iter__(self): |
| 295 | queryset = self.queryset |
| 296 | compiler = queryset.query.get_compiler(queryset.db) |
| 297 | for row in compiler.results_iter( |
| 298 | chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size |
| 299 | ): |
| 300 | yield row[0] |
| 301 | |
| 302 | |
| 303 | class PreventQuerySetCloning: |
nothing calls this directly
no test coverage detected