(self)
| 89 | return self._result_count - self._ignored_result_count |
| 90 | |
| 91 | def __iter__(self): |
| 92 | if self._cache_is_full(): |
| 93 | # We've got a fully populated cache. Let Python do the hard work. |
| 94 | return iter(self._result_cache) |
| 95 | |
| 96 | return self._manual_iter() |
| 97 | |
| 98 | def __and__(self, other): |
| 99 | if isinstance(other, EmptySearchQuerySet): |
nothing calls this directly
no test coverage detected