(self)
| 252 | """ |
| 253 | |
| 254 | def __iter__(self): |
| 255 | queryset = self.queryset |
| 256 | query = queryset.query |
| 257 | compiler = query.get_compiler(queryset.db) |
| 258 | return compiler.results_iter( |
| 259 | tuple_expected=True, |
| 260 | chunked_fetch=self.chunked_fetch, |
| 261 | chunk_size=self.chunk_size, |
| 262 | ) |
| 263 | |
| 264 | |
| 265 | class NamedValuesListIterable(ValuesListIterable): |
nothing calls this directly
no test coverage detected