summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/engine/base.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2022-10-02 21:22:11 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2022-10-02 21:26:22 -0400
commit6c180ab7434371bc0206e6fcd41df94061b82c80 (patch)
treef4ab15e49de5d517ebe6110bd49751f294187d0c /lib/sqlalchemy/engine/base.py
parent7051dc5842a6e3012578b2430dbc90ceff8d7050 (diff)
downloadsqlalchemy-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/engine/base.py')
-rw-r--r--lib/sqlalchemy/engine/base.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sqlalchemy/engine/base.py b/lib/sqlalchemy/engine/base.py
index 1b07acab5..1ec307297 100644
--- a/lib/sqlalchemy/engine/base.py
+++ b/lib/sqlalchemy/engine/base.py
@@ -2603,13 +2603,13 @@ class RootTransaction(Transaction):
accessible via the :attr:`_engine.Connection.get_transaction` method of
:class:`_engine.Connection`.
- In :term:`2.0 style` use, the :class:`_future.Connection` also employs
+ In :term:`2.0 style` use, the :class:`_engine.Connection` also employs
"autobegin" behavior that will create a new
:class:`_engine.RootTransaction` whenever a connection in a
non-transactional state is used to emit commands on the DBAPI connection.
The scope of the :class:`_engine.RootTransaction` in 2.0 style
- use can be controlled using the :meth:`_future.Connection.commit` and
- :meth:`_future.Connection.rollback` methods.
+ use can be controlled using the :meth:`_engine.Connection.commit` and
+ :meth:`_engine.Connection.rollback` methods.
"""
@@ -2865,7 +2865,7 @@ class Engine(
This is the **SQLAlchemy 1.x version** of :class:`_engine.Engine`. For
the :term:`2.0 style` version, which includes some API differences,
- see :class:`_future.Engine`.
+ see :class:`_engine.Engine`.
An :class:`_engine.Engine` object is instantiated publicly using the
:func:`~sqlalchemy.create_engine` function.