diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2006-03-31 07:20:13 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2006-03-31 07:20:13 +0000 |
| commit | d929ae8d90174a270ee708279ff9c831f9d3193e (patch) | |
| tree | dd8f931a75b031793e17c4a0817af2520573ca26 /lib/sqlalchemy/__init__.py | |
| parent | 90ffb177ed88cac43d4c3cbdc568d0d0a93fd579 (diff) | |
| download | sqlalchemy-d929ae8d90174a270ee708279ff9c831f9d3193e.tar.gz | |
introducing...the mods package ! the SelectResults thing moves as the first mod
Diffstat (limited to 'lib/sqlalchemy/__init__.py')
| -rw-r--r-- | lib/sqlalchemy/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/sqlalchemy/__init__.py b/lib/sqlalchemy/__init__.py index 9f7b99fea..bbb57955b 100644 --- a/lib/sqlalchemy/__init__.py +++ b/lib/sqlalchemy/__init__.py @@ -11,11 +11,12 @@ from schema import * from exceptions import * import mapping as mapperlib from mapping import * - import sqlalchemy.schema import sqlalchemy.ext.proxy sqlalchemy.schema.default_engine = sqlalchemy.ext.proxy.ProxyEngine() +from sqlalchemy.mods import install_mods + def global_connect(*args, **kwargs): sqlalchemy.schema.default_engine.connect(*args, **kwargs)
\ No newline at end of file |
