summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/engine/create.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2022-01-14 17:42:44 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2022-01-14 17:45:59 -0500
commite058d25cf01c3163e5ff39e4ccaff1928f332a27 (patch)
tree29acd28183ff0675c9c51c68abff3055c1466c8d /lib/sqlalchemy/engine/create.py
parent07cd49daaadd0a0568444eaeccaa79f79cd15ffc (diff)
downloadsqlalchemy-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.py3
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.