MCPcopy
hub / github.com/django/django / __and__

Method __and__

django/db/models/query_utils.py:90–91  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

88 return self._combine(other, self.OR)
89
90 def __and__(self, other):
91 return self._combine(other, self.AND)
92
93 def __xor__(self, other):
94 return self._combine(other, self.XOR)

Callers

nothing calls this directly

Calls 1

_combineMethod · 0.95

Tested by

no test coverage detected