summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql/operators.py
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2020-03-25 17:28:29 +0000
committerGerrit Code Review <gerrit@bbpush.zzzcomputing.com>2020-03-25 17:28:29 +0000
commit25b44105269ee38778464c28e5869a742f9cc407 (patch)
tree0b615966502d5667c7b99a57862b14e9ee290e6d /lib/sqlalchemy/sql/operators.py
parent89d34a99e2d4f6434397fc274d5980830a53f950 (diff)
parent478185d05df86c73ad212a11732eb5374c8637a1 (diff)
downloadsqlalchemy-25b44105269ee38778464c28e5869a742f9cc407.tar.gz
Merge "Correct ambiguous func / class links"
Diffstat (limited to 'lib/sqlalchemy/sql/operators.py')
-rw-r--r--lib/sqlalchemy/sql/operators.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sqlalchemy/sql/operators.py b/lib/sqlalchemy/sql/operators.py
index 07a1eaaaf..ae56822c2 100644
--- a/lib/sqlalchemy/sql/operators.py
+++ b/lib/sqlalchemy/sql/operators.py
@@ -579,8 +579,8 @@ class ColumnOperators(Operators):
.. versionadded:: 1.3 "expanding" bound parameters now support
empty lists
- * a :func:`.select` construct, which is usually a correlated
- scalar select::
+ * a :func:`~.sql.expression.select` construct, which is usually a
+ correlated scalar select::
stmt.where(
column.in_(
@@ -594,8 +594,8 @@ class ColumnOperators(Operators):
WHERE COL IN (SELECT othertable.y
FROM othertable WHERE othertable.x = table.x)
- :param other: a list of literals, a :func:`.select` construct,
- or a :func:`.bindparam` construct that includes the
+ :param other: a list of literals, a :func:`~.sql.expression.select`
+ construct, or a :func:`.bindparam` construct that includes the
:paramref:`.bindparam.expanding` flag set to True.
"""