diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-09-21 17:00:44 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-09-21 17:00:44 -0400 |
| commit | 944e9029006792f0052d9870100d2f7c801942f1 (patch) | |
| tree | 808fbd98679bcdb472fc23185fa9d32649d5bc9c /lib/sqlalchemy/sql | |
| parent | 3992b3c9a26526d626732660beabca516c43cd10 (diff) | |
| download | sqlalchemy-944e9029006792f0052d9870100d2f7c801942f1.tar.gz | |
patch from 0.7: Adjusted the "importlater" mechanism, which is
used internally to resolve import cycles,
such that the usage of __import__ is completed
when the import of sqlalchemy or sqlalchemy.orm
is done, thereby avoiding any usage of __import__
after the application starts new threads,
fixes [ticket:2279].
Diffstat (limited to 'lib/sqlalchemy/sql')
| -rw-r--r-- | lib/sqlalchemy/sql/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/sqlalchemy/sql/__init__.py b/lib/sqlalchemy/sql/__init__.py index 80aa76928..822c13909 100644 --- a/lib/sqlalchemy/sql/__init__.py +++ b/lib/sqlalchemy/sql/__init__.py @@ -63,3 +63,4 @@ from sqlalchemy.sql.visitors import ClauseVisitor __tmp = locals().keys() __all__ = sorted([i for i in __tmp if not i.startswith('__')]) + |
