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

Method all

django/db/models/query.py:1640–1645  ·  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

1638 ##################################################################
1639
1640 def all(self):
1641 """
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 """
1645 return self._chain()
1646
1647 def filter(self, *args, **kwargs):
1648 """

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