diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-01-14 17:42:44 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-01-14 17:45:59 -0500 |
commit | e058d25cf01c3163e5ff39e4ccaff1928f332a27 (patch) | |
tree | 29acd28183ff0675c9c51c68abff3055c1466c8d /lib/sqlalchemy/engine/create.py | |
parent | 07cd49daaadd0a0568444eaeccaa79f79cd15ffc (diff) | |
download | sqlalchemy-e058d25cf01c3163e5ff39e4ccaff1928f332a27.tar.gz |
remove dbapi_proxy module
This module was not documented nor part of any test suite,
and it's unlikely it was working correctly. It's not likely
that this module was ever used after the first year or so
of SQLAlchemy, and it's stayed around because it is so
obscure that I never remembered to remove it.
Change-Id: I0ed9030438982e935add87c51abbfff50e7382be
References: #7257
Diffstat (limited to 'lib/sqlalchemy/engine/create.py')
-rw-r--r-- | lib/sqlalchemy/engine/create.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/sqlalchemy/engine/create.py b/lib/sqlalchemy/engine/create.py index a39d98173..7eebb1f01 100644 --- a/lib/sqlalchemy/engine/create.py +++ b/lib/sqlalchemy/engine/create.py @@ -548,9 +548,6 @@ def create_engine(url, **kwargs): pool = poolclass(creator, **pool_args) else: - if isinstance(pool, poollib.dbapi_proxy._DBProxy): - pool = pool.get_pool(*cargs, **cparams) - pool._dialect = dialect # create engine. |