diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2006-10-17 02:03:00 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2006-10-17 02:03:00 +0000 |
commit | 180d3741997c1471b9199334d6076e45cd581d62 (patch) | |
tree | de7b56896d440e375a10df1440f6cccec11047cc /lib/sqlalchemy/ext/proxy.py | |
parent | bc698d778d9bc8ddf2ee676fde24326f819da7dc (diff) | |
download | sqlalchemy-180d3741997c1471b9199334d6076e45cd581d62.tar.gz |
reorganizing classnames a bit, flagging "private" classes in the sql package,
getting the generated docs to look a little nicer.
fixes to extensions, sqlsoup etc. to be compatible with recent API tweaks
Diffstat (limited to 'lib/sqlalchemy/ext/proxy.py')
-rw-r--r-- | lib/sqlalchemy/ext/proxy.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/ext/proxy.py b/lib/sqlalchemy/ext/proxy.py index 60972a6d5..c7e707f8d 100644 --- a/lib/sqlalchemy/ext/proxy.py +++ b/lib/sqlalchemy/ext/proxy.py @@ -4,11 +4,11 @@ except ImportError: from sqlalchemy.util import ThreadLocal as local from sqlalchemy import sql -from sqlalchemy.engine import create_engine +from sqlalchemy.engine import create_engine, Engine __all__ = ['BaseProxyEngine', 'AutoConnectEngine', 'ProxyEngine'] -class BaseProxyEngine(sql.Engine): +class BaseProxyEngine(sql.Executor): """Basis for all proxy engines.""" def get_engine(self): |