to not export __names__ [ticket:1215].
properly converted to IS NOT NULL based on not_().
- sql
+ - Fixed the import weirdness in sqlalchemy.sql
+ to not export __names__ [ticket:1215].
+
- Added NotImplementedError for params() method
on Insert/Update/Delete constructs. These items
currently don't support this functionality, which
from sqlalchemy.sql.visitors import ClauseVisitor
-
-__all__ = sorted(locals().keys())
+__tmp = locals().keys()
+__all__ = sorted([i for i in __tmp if not i.startswith('__')])