summaryrefslogtreecommitdiff
path: root/django/db/models/sql/datastructures.py
diff options
context:
space:
mode:
authordjango-bot <ops@djangoproject.com>2025-07-22 20:41:41 -0700
committernessita <124304+nessita@users.noreply.github.com>2025-07-23 20:17:55 -0300
commit69a93a88edb56ba47f624dac7a21aacc47ea474f (patch)
treef57507a4435d032493cae40e06ecb254790b67b2 /django/db/models/sql/datastructures.py
parent55b0cc21310b76ce4018dd793ba50556eaf0af06 (diff)
Refs #36500 -- Rewrapped long docstrings and block comments via a script.
Rewrapped long docstrings and block comments to 79 characters + newline using script from https://github.com/medmunds/autofix-w505.
Diffstat (limited to 'django/db/models/sql/datastructures.py')
-rw-r--r--django/db/models/sql/datastructures.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/django/db/models/sql/datastructures.py b/django/db/models/sql/datastructures.py
index be6934485c..ffdd36c0c8 100644
--- a/django/db/models/sql/datastructures.py
+++ b/django/db/models/sql/datastructures.py
@@ -37,8 +37,8 @@ class Join:
- table_alias (possible alias for the table, can be None)
- join_type (can be None for those entries that aren't joined from
anything)
- - parent_alias (which table is this join's parent, can be None similarly
- to join_type)
+ - parent_alias (which table is this join's parent, can be None
+ similarly to join_type)
- as_sql()
- relabeled_clone()
"""
@@ -76,7 +76,8 @@ class Join:
def as_sql(self, compiler, connection):
"""
Generate the full
- LEFT OUTER JOIN sometable ON sometable.somecol = othertable.othercol, params
+ LEFT OUTER JOIN sometable ON sometable.somecol =
+ othertable.othercol, params
clause for this join.
"""
join_conditions = []