(self, other)
| 96 | return self._manual_iter() |
| 97 | |
| 98 | def __and__(self, other): |
| 99 | if isinstance(other, EmptySearchQuerySet): |
| 100 | return other._clone() |
| 101 | combined = self._clone() |
| 102 | combined.query.combine(other.query, SQ.AND) |
| 103 | return combined |
| 104 | |
| 105 | def __or__(self, other): |
| 106 | combined = self._clone() |