diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-04-14 16:39:42 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-04-14 16:39:42 -0400 |
commit | 447c0750e1f739c4db1d0d20de182c297dc86e36 (patch) | |
tree | f3fc94e0871fb34205fc5695f82d882bea554839 /lib/sqlalchemy/engine/row.py | |
parent | d9b230e78c70c17a6856f4ff3b8380b9ce510702 (diff) | |
download | sqlalchemy-447c0750e1f739c4db1d0d20de182c297dc86e36.tar.gz |
Set up absolute references for create_engine and related
includes more replacements for create_engine(), Connection,
disambiguation of Result from future/baked
Change-Id: Icb60a79ee7a6c45ea9056c211ffd1be110da3b5e
Diffstat (limited to 'lib/sqlalchemy/engine/row.py')
-rw-r--r-- | lib/sqlalchemy/engine/row.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/sqlalchemy/engine/row.py b/lib/sqlalchemy/engine/row.py index b58b350e2..68e32057d 100644 --- a/lib/sqlalchemy/engine/row.py +++ b/lib/sqlalchemy/engine/row.py @@ -127,7 +127,7 @@ class Row(BaseRow, collections_abc.Sequence): The :class:`.Row` object represents a row of a database result. It is typically associated in the 1.x series of SQLAlchemy with the - :class:`.ResultProxy` object, however is also used by the ORM for + :class:`_engine.ResultProxy` object, however is also used by the ORM for tuple-like results as of SQLAlchemy 1.4. The :class:`.Row` object seeks to act as much like a Python named @@ -150,7 +150,8 @@ class Row(BaseRow, collections_abc.Sequence): and now acts mostly like a named tuple. Mapping-like functionality is moved to the :attr:`.Row._mapping` attribute, but will remain available in SQLAlchemy 1.x series via the :class:`.LegacyRow` class that is used - by :class:`.ResultProxy`. See :ref:`change_4710_core` for background + by :class:`_engine.ResultProxy`. + See :ref:`change_4710_core` for background on this change. """ |