diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-08-12 18:35:14 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-08-12 18:35:14 -0400 |
| commit | 0cad8827c27c87d70db522ec88a89ca3c2a4ef76 (patch) | |
| tree | d3e928e689d16e380b7e38e9079e235edc4b7904 /lib/sqlalchemy/engine | |
| parent | a134ec1760df6295d537ff63df7aee83d957bf6a (diff) | |
| download | sqlalchemy-0cad8827c27c87d70db522ec88a89ca3c2a4ef76.tar.gz | |
restore Connectable and other changes for oslo.db
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
Diffstat (limited to 'lib/sqlalchemy/engine')
| -rw-r--r-- | lib/sqlalchemy/engine/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/sqlalchemy/engine/__init__.py b/lib/sqlalchemy/engine/__init__.py index 7bbeb1e73..dc871785d 100644 --- a/lib/sqlalchemy/engine/__init__.py +++ b/lib/sqlalchemy/engine/__init__.py @@ -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 |
