diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-10-02 21:22:11 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-10-02 21:26:22 -0400 |
commit | 6c180ab7434371bc0206e6fcd41df94061b82c80 (patch) | |
tree | f4ab15e49de5d517ebe6110bd49751f294187d0c /lib/sqlalchemy/sql/selectable.py | |
parent | 7051dc5842a6e3012578b2430dbc90ceff8d7050 (diff) | |
download | sqlalchemy-6c180ab7434371bc0206e6fcd41df94061b82c80.tar.gz |
the future is here
the autodoc for the "future" Engine / Connection were removed,
so all these links weren't working. Replace all _future
for these with _engine. There was just one _future pointing
to select, changed that separately.
Change-Id: Ib28270d8da8616b533953204e22eabee9388d620
Diffstat (limited to 'lib/sqlalchemy/sql/selectable.py')
-rw-r--r-- | lib/sqlalchemy/sql/selectable.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/selectable.py b/lib/sqlalchemy/sql/selectable.py index 8de93c2b4..bdc884d7b 100644 --- a/lib/sqlalchemy/sql/selectable.py +++ b/lib/sqlalchemy/sql/selectable.py @@ -5068,7 +5068,7 @@ class Select( def filter( self: SelfSelect, *criteria: _ColumnExpressionArgument[bool] ) -> SelfSelect: - """A synonym for the :meth:`_future.Select.where` method.""" + """A synonym for the :meth:`_sql.Select.where` method.""" return self.where(*criteria) |