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 /test/engine/test_pool.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 'test/engine/test_pool.py')
| -rw-r--r-- | test/engine/test_pool.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/test/engine/test_pool.py b/test/engine/test_pool.py index c2ac6637f..324b971b6 100644 --- a/test/engine/test_pool.py +++ b/test/engine/test_pool.py @@ -68,7 +68,6 @@ def MockDBAPI(): # noqa class PoolTestBase(fixtures.TestBase): def setup_test(self): - pool.clear_managers() self._teardown_conns = [] def teardown_test(self): @@ -77,10 +76,6 @@ class PoolTestBase(fixtures.TestBase): if conn: conn.close() - @classmethod - def teardown_test_class(cls): - pool.clear_managers() - def _with_teardown(self, connection): self._teardown_conns.append(weakref.ref(connection)) return connection |
