diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-12-08 12:54:44 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-12-08 12:54:44 -0500 |
| commit | 157dc421f99436dbd5c0c2f48f7f647d9fe5a10b (patch) | |
| tree | 4d15acf5c97e4797fa7f06c2c3a4fbad44e9f50e /lib/sqlalchemy | |
| parent | 6817592180ac2ecd52d543029431f3f803967ce6 (diff) | |
| download | sqlalchemy-157dc421f99436dbd5c0c2f48f7f647d9fe5a10b.tar.gz | |
python2.5 fix
Diffstat (limited to 'lib/sqlalchemy')
| -rw-r--r-- | lib/sqlalchemy/pool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/pool.py b/lib/sqlalchemy/pool.py index 6bb56478c..1ee83e5f3 100644 --- a/lib/sqlalchemy/pool.py +++ b/lib/sqlalchemy/pool.py @@ -15,7 +15,7 @@ Also provides a DB-API 2.0 connection proxying mechanism allowing regular DB-API connect() methods to be transparently managed by a SQLAlchemy connection pool. """ - +from __future__ import with_statement import time import traceback import weakref |
