]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Restore ResultProxy name to sqlalchemy.engine
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 23 Mar 2021 21:51:34 +0000 (17:51 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 23 Mar 2021 21:51:34 +0000 (17:51 -0400)
Fixes: #6118
Fixes: #6119
Change-Id: I7aad2be6572ad6d0bf982f4d6dc63a71485d73fa

doc/build/changelog/unreleased_14/6119.rst [new file with mode: 0644]
lib/sqlalchemy/engine/__init__.py

diff --git a/doc/build/changelog/unreleased_14/6119.rst b/doc/build/changelog/unreleased_14/6119.rst
new file mode 100644 (file)
index 0000000..7fa60ae
--- /dev/null
@@ -0,0 +1,7 @@
+.. change::
+    :tags: bug, engine, regression
+    :tickets: 6119
+
+    Restored the :class:`_engine.ResultProxy` name back to the
+    ``sqlalchemy.engine`` namespace. This name refers to the
+    :class:`_engine.LegacyCursorResult` object.
index 8a5ae1992bf6242cb511e519d775624fbf61c329..237c40b26b4f4db427f9b75273ca1b39011938aa 100644 (file)
@@ -32,6 +32,7 @@ from .cursor import BufferedRowResultProxy
 from .cursor import CursorResult
 from .cursor import FullyBufferedResultProxy
 from .cursor import LegacyCursorResult
+from .cursor import ResultProxy
 from .interfaces import Compiled
 from .interfaces import Connectable
 from .interfaces import CreateEnginePlugin