(self, *other_qs)
| 1732 | return self._combinator_query("intersection", *other_qs) |
| 1733 | |
| 1734 | def difference(self, *other_qs): |
| 1735 | # If the query is an EmptyQuerySet, return it. |
| 1736 | if isinstance(self, EmptyQuerySet): |
| 1737 | return self |
| 1738 | return self._combinator_query("difference", *other_qs) |
| 1739 | |
| 1740 | def select_for_update(self, nowait=False, skip_locked=False, of=(), no_key=False): |
| 1741 | """ |