]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
restore Connectable and other changes for oslo.db
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 12 Aug 2022 22:35:14 +0000 (18:35 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 12 Aug 2022 22:35:14 +0000 (18:35 -0400)
at this point oslo.db should be passing tests however
they seem to be importing "Connectable", which we had
temporarily removed, it's now a different kind of object
but restore it to the engine import space which seems
to be where they're pulling it from to see if oslo.db
can run some tests now.

Change-Id: I52cb5ad82b00eec12004eeeb571c4eb8efa5ced2

lib/sqlalchemy/engine/__init__.py

index 7bbeb1e73bd7f4f1d1ff871122285a37d9638135..dc871785d2db64d65057df1ec1980c0946d60841 100644 (file)
@@ -30,7 +30,9 @@ from .cursor import ResultProxy as ResultProxy
 from .interfaces import AdaptedConnection as AdaptedConnection
 from .interfaces import BindTyping as BindTyping
 from .interfaces import Compiled as Compiled
+from .interfaces import Connectable as Connectable
 from .interfaces import ConnectArgsType as ConnectArgsType
+from .interfaces import ConnectionEventsTarget as ConnectionEventsTarget
 from .interfaces import CreateEnginePlugin as CreateEnginePlugin
 from .interfaces import Dialect as Dialect
 from .interfaces import ExceptionContext as ExceptionContext