MCPcopy
hub / github.com/django/django / difference

Method difference

django/db/models/query.py:1734–1738  ·  view source on GitHub ↗
(self, *other_qs)

Source from the content-addressed store, hash-verified

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 """

Callers 15

_reverse_with_prefixMethod · 0.45
__new__Method · 0.45
alter_unique_togetherMethod · 0.45
alter_index_togetherMethod · 0.45
saveMethod · 0.45
sortMethod · 0.45
add_annotationMethod · 0.45
add_deferred_loadingMethod · 0.45

Calls 1

_combinator_queryMethod · 0.95