diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2005-11-30 05:39:11 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2005-11-30 05:39:11 +0000 |
commit | 75b2745528b79a00ef24858fc362c3b6a790a448 (patch) | |
tree | 6e1615a915148d7106a6593a722980d7ef04a538 /lib/sqlalchemy/sql.py | |
parent | 93398271ed4368de08738951c7040b2c15d286ae (diff) | |
download | sqlalchemy-75b2745528b79a00ef24858fc362c3b6a790a448.tar.gz |
migrated __ALL__ to __all__, oops, and reworked module
import scheme
Diffstat (limited to 'lib/sqlalchemy/sql.py')
-rw-r--r-- | lib/sqlalchemy/sql.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql.py b/lib/sqlalchemy/sql.py index 83ac01a23..fc4d42762 100644 --- a/lib/sqlalchemy/sql.py +++ b/lib/sqlalchemy/sql.py @@ -23,7 +23,7 @@ import sqlalchemy.util as util import sqlalchemy.types as types import string, re -__ALL__ = ['text', 'column', 'func', 'select', 'join', 'and_', 'or_', 'not_', 'union', 'unionall', 'desc', 'asc', 'outerjoin', 'alias', 'subquery', 'bindparam', 'sequence'] +__all__ = ['text', 'column', 'func', 'select', 'update', 'insert', 'delete', 'join', 'and_', 'or_', 'not_', 'union', 'union_all', 'desc', 'asc', 'outerjoin', 'alias', 'subquery', 'bindparam', 'sequence', 'exists'] def desc(column): """returns a descending ORDER BY clause element, e.g.: |