1
0
mirror of https://github.com/django/django.git synced 2025-07-16 07:39:12 +00:00

[3.1.x] Fixed #31122 -- Clarified that Lookup acts as a query expression.

Backport of 9a3454f6046b9b7591fd03e21cf6da0b23c57689 from master
This commit is contained in:
Caio Ariede 2020-10-19 09:15:39 -03:00 committed by Mariusz Felisiak
parent 09dbae21c9
commit 7ace6265d6

View File

@ -180,9 +180,8 @@ following methods:
The notation to use a lookup in an expression is
``<lhs>__<lookup_name>=<rhs>``.
This class doesn't follow the :ref:`Query Expression API <query-expression>`
since it has ``=<rhs>`` on its construction: lookups are always the end of
a lookup expression.
This class acts as a query expression, but, since it has ``=<rhs>`` on its
construction, lookups must always be the end of a lookup expression.
.. attribute:: lhs