]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
remove incorrect deprecation message
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 27 Feb 2022 19:27:54 +0000 (14:27 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 27 Feb 2022 19:27:54 +0000 (14:27 -0500)
this message likely referred to ResultProxy,
no idea how it referred to CursorResult, that's a very confusing
issue.  ResultProxy -> CursorResult is mostly a name
change as far as backwards compat is concerned so there's
not much "deprecated" here.

Change-Id: Ic06bdde65a120101b2f9db22483bf3be6ff3556c

doc/build/core/connections.rst

index c0efba0f5c048097fde6302706f6515052fbe73f..97191f5aaa69b71b77f7b04b80f42af98f2a37a7 100644 (file)
@@ -74,9 +74,6 @@ pooling mechanism issues a ``rollback()`` call on the DBAPI connection so that
 any transactional state or locks are removed, and the connection is ready for
 its next use.
 
-.. deprecated:: 2.0 The :class:`_engine.CursorResult` object is replaced in SQLAlchemy
-   2.0 with a newly refined object known as :class:`_future.Result`.
-
 Our example above illustrated the execution of a textual SQL string, which
 should be invoked by using the :func:`_expression.text` construct to indicate that
 we'd like to use textual SQL.  The :meth:`_engine.Connection.execute` method can of