From 478185d05df86c73ad212a11732eb5374c8637a1 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 25 Mar 2020 11:34:19 -0400 Subject: Correct ambiguous func / class links :func:`.sql.expression.select`, :func:`.sql.expression.insert` and :class:`.sql.expression.Insert` were hitting many ambiguous symbol errors, due to future.select, as well as the PG/MySQL variants of Insert. Change-Id: Iac862bfc172a7f7f0cbba5353a83dc203bed376c --- lib/sqlalchemy/sql/compiler.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'lib/sqlalchemy/sql/compiler.py') diff --git a/lib/sqlalchemy/sql/compiler.py b/lib/sqlalchemy/sql/compiler.py index 14f4bda8c..000fc05fa 100644 --- a/lib/sqlalchemy/sql/compiler.py +++ b/lib/sqlalchemy/sql/compiler.py @@ -669,11 +669,12 @@ class SQLCompiler(Compiled): """Optional :class:`.CompileState` object that maintains additional state used by the compiler. - Major executable objects such as :class:`.Insert`, :class:`.Update`, - :class:`.Delete`, :class:`.Select` will generate this state when compiled - in order to calculate additional information about the object. For the - top level object that is to be executed, the state can be stored here where - it can also have applicability towards result set processing. + Major executable objects such as :class:`~.sql.expression.Insert`, + :class:`.Update`, :class:`.Delete`, :class:`.Select` will generate this + state when compiled in order to calculate additional information about the + object. For the top level object that is to be executed, the state can be + stored here where it can also have applicability towards result set + processing. .. versionadded:: 1.4 -- cgit v1.2.1