MCPcopy
hub / github.com/django/django / all

Method all

django/db/models/query.py:1640–1645  ·  django/db/models/query.py::QuerySet.all

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)

Source from the content-addressed store, hash-verified

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">"""

Callers 15

_get_querysetFunction · 0.45
_get_user_permissionsMethod · 0.45
_get_permissionsMethod · 0.45
_aget_permissionsMethod · 0.45
groups_for_userFunction · 0.45
readyMethod · 0.45
kmlFunction · 0.45
value_to_stringMethod · 0.45
setMethod · 0.45
shortcutFunction · 0.45
__init__Method · 0.45

Calls 1

_chainMethod · 0.95