Returns an empty result list for the query.
(self)
| 321 | return self._clone() |
| 322 | |
| 323 | def none(self): |
| 324 | """Returns an empty result list for the query.""" |
| 325 | return self._clone(klass=EmptySearchQuerySet) |
| 326 | |
| 327 | def filter(self, *args, **kwargs): # noqa A003 |
| 328 | """Narrows the search based on certain attributes and the default operator.""" |