diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-01-21 18:41:48 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-01-21 20:09:39 -0500 |
| commit | c506e01324cac524ee15257d31d9821aa8a23b95 (patch) | |
| tree | e3fef4f33a05b4f8cacd21a7a3e42089694f9a85 /lib/sqlalchemy/sql/__init__.py | |
| parent | d8ac1e9e6bfc931d2f14f9846d6924106f56b7e6 (diff) | |
| download | sqlalchemy-c506e01324cac524ee15257d31d9821aa8a23b95.tar.gz | |
Reorganize core event modules to avoid import cycles
sqlalchemy.sql.naming was causing a full import of
engine due to the DDLEvents dependency. Break out pool,
DDL and engine events into new modules specific to those
packages; resolve some other import cycles in Core also.
Change-Id: Ife8d217e58a26ab3605dd80ee70837968f957eaf
Diffstat (limited to 'lib/sqlalchemy/sql/__init__.py')
| -rw-r--r-- | lib/sqlalchemy/sql/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/sqlalchemy/sql/__init__.py b/lib/sqlalchemy/sql/__init__.py index 2b4939227..6554faaa0 100644 --- a/lib/sqlalchemy/sql/__init__.py +++ b/lib/sqlalchemy/sql/__init__.py @@ -98,6 +98,7 @@ def __go(lcls): from . import base from . import coercions from . import elements + from . import events # noqa from . import selectable from . import schema from . import sqltypes |
