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)
| 1527 | ################################################################## |
| 1528 | |
| 1529 | def all(self): |
| 1530 | """ |
| 1531 | Return a new QuerySet that is a copy of the current one. This allows a |
| 1532 | QuerySet to proxy for a model manager in some cases. |
| 1533 | """ |
| 1534 | return self._chain() |
| 1535 | |
| 1536 | def filter(self, *args, **kwargs): |
| 1537 | """ |