From: Mike Bayer Date: Thu, 31 Jul 2008 16:48:32 +0000 (+0000) Subject: added MutableType, Concatenable to __all__ X-Git-Tag: rel_0_5beta3~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2cb79b9808e793bc71c21785e81e486a65b91129;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git added MutableType, Concatenable to __all__ --- diff --git a/lib/sqlalchemy/types.py b/lib/sqlalchemy/types.py index a03bf41bf4..3b08cf6f38 100644 --- a/lib/sqlalchemy/types.py +++ b/lib/sqlalchemy/types.py @@ -17,7 +17,7 @@ __all__ = [ 'TypeEngine', 'TypeDecorator', 'AbstractType', 'BOOLEAN', 'SMALLINT', 'DATE', 'TIME', 'String', 'Integer', 'SmallInteger','Smallinteger', 'Numeric', 'Float', 'DateTime', 'Date', 'Time', 'Binary', - 'Boolean', 'Unicode', 'UnicodeText', 'PickleType', 'Interval', + 'Boolean', 'Unicode', 'MutableType', 'Concatenable', 'UnicodeText', 'PickleType', 'Interval', 'type_map' ]