Return a new QuerySet that is a copy of the current one. This allows a QuerySet to proxy for a model manager in some cases.
(self)
| 1638 | class="cm">################################################################## |
| 1639 | |
| 1640 | def all(self): |
| 1641 | class="st">""" |
| 1642 | Return a new QuerySet that is a copy of the current one. This allows a |
| 1643 | QuerySet to proxy for a model manager in some cases. |
| 1644 | class="st">""" |
| 1645 | return self._chain() |
| 1646 | |
| 1647 | def filter(self, *args, **kwargs): |
| 1648 | class="st">""" |