Return a new QuerySet instance with the args ANDed to the existing set.
(self, *args, **kwargs)
| 1645 | return self._chain() |
| 1646 | |
| 1647 | def filter(self, *args, **kwargs): |
| 1648 | """ |
| 1649 | Return a new QuerySet instance with the args ANDed to the existing |
| 1650 | set. |
| 1651 | """ |
| 1652 | self._not_support_combined_queries("filter") |
| 1653 | return self._filter_or_exclude(False, args, kwargs) |
| 1654 | |
| 1655 | def exclude(self, *args, **kwargs): |
| 1656 | """ |
no test coverage detected