From: Mike Bayer Date: Sat, 9 Dec 2006 04:02:36 +0000 (+0000) Subject: added SmallInteger to __all__ list (now we have both SmallInteger/Smallinteger.....) X-Git-Tag: rel_0_3_2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=499e07991ef09dbddbcfc564ffd74f8c4d8d7865;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git added SmallInteger to __all__ list (now we have both SmallInteger/Smallinteger.....) --- diff --git a/lib/sqlalchemy/types.py b/lib/sqlalchemy/types.py index eddb5d306f..ad7868b9b2 100644 --- a/lib/sqlalchemy/types.py +++ b/lib/sqlalchemy/types.py @@ -6,7 +6,7 @@ __all__ = [ 'TypeEngine', 'TypeDecorator', 'NullTypeEngine', 'INT', 'CHAR', 'VARCHAR', 'NCHAR', 'TEXT', 'FLOAT', 'DECIMAL', - 'TIMESTAMP', 'DATETIME', 'CLOB', 'BLOB', 'BOOLEAN', 'String', 'Integer', 'Smallinteger', + 'TIMESTAMP', 'DATETIME', 'CLOB', 'BLOB', 'BOOLEAN', 'String', 'Integer', 'SmallInteger','Smallinteger', 'Numeric', 'Float', 'DateTime', 'Date', 'Time', 'Binary', 'Boolean', 'Unicode', 'PickleType', 'NULLTYPE', 'SMALLINT', 'DATE', 'TIME' ]