MCPcopy Index your code
hub / github.com/django-haystack/django-haystack / exclude

Method exclude

haystack/manager.py:27–28  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

25 return self.get_search_queryset().filter(*args, **kwargs)
26
27 def exclude(self, *args, **kwargs):
28 return self.get_search_queryset().exclude(*args, **kwargs)
29
30 def filter_and(self, *args, **kwargs):
31 return self.get_search_queryset().filter_and(*args, **kwargs)

Callers

nothing calls this directly

Calls 1

get_search_querysetMethod · 0.95

Tested by

no test coverage detected