MCPcopy Index your code
hub / github.com/django/django / all

Method all

django/db/models/query.py:1529–1534  ·  view source on GitHub ↗

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

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

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