(self, start, end)
| 708 | """ |
| 709 | |
| 710 | def _fill_cache(self, start, end): |
| 711 | query_fields = set(self._internal_fields) |
| 712 | query_fields.update(self._fields) |
| 713 | kwargs = {"fields": query_fields} |
| 714 | return super(ValuesListSearchQuerySet, self)._fill_cache(start, end, **kwargs) |
| 715 | |
| 716 | def post_process_results(self, results): |
| 717 | to_cache = [] |
nothing calls this directly
no test coverage detected