diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-09-09 10:24:15 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-09-09 11:01:01 -0400 |
commit | 5ed90cb05a1526c854e3e8f84a5c29d0379bfa95 (patch) | |
tree | cf687557b0cb22375ca481ba2eedc8d6b937062e /lib/sqlalchemy/sql/selectable.py | |
parent | 28138ee6fbc1273f1bf16699927e09db81ae7870 (diff) | |
download | sqlalchemy-5ed90cb05a1526c854e3e8f84a5c29d0379bfa95.tar.gz |
Repair documentation issues
Fixes some remaining issues detailed at #5428.
Fixes: #5428
Change-Id: I942a64411766fc82f30791eee570747a218af77d
Diffstat (limited to 'lib/sqlalchemy/sql/selectable.py')
-rw-r--r-- | lib/sqlalchemy/sql/selectable.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/sqlalchemy/sql/selectable.py b/lib/sqlalchemy/sql/selectable.py index ea3bb0512..0c808e7a7 100644 --- a/lib/sqlalchemy/sql/selectable.py +++ b/lib/sqlalchemy/sql/selectable.py @@ -4108,9 +4108,11 @@ class Select( column with its parent table's (or aliases) name so that name conflicts between columns in different tables don't occur. The format of the label is ``<tablename>_<column>``. The "c" - collection of the resulting :class:`_expression.Select` - object will use these - names as well for targeting column members. + collection of a :class:`_expression.Subquery` created + against this :class:`_expression.Select` + object, as well as the :attr:`_expression.Select.selected_columns` + collection of the :class:`_expression.Select` itself, will use these + names for targeting column members. This parameter can also be specified on an existing :class:`_expression.Select` object using the |