summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-05-04 17:37:56 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-05-04 17:37:56 -0400
commit391ca4dc8ee0f78dec86a1ab431d4fcfa7590de3 (patch)
tree92239c9556ac1f6fed1a3d2e8b2bacb9ca16cb65 /lib
parentb5559d307039767f7aa961c537b985e56e81deaf (diff)
downloadsqlalchemy-391ca4dc8ee0f78dec86a1ab431d4fcfa7590de3.tar.gz
- [bug] Add BINARY, VARBINARY to types.__all__,
[ticket:2474]
Diffstat (limited to 'lib')
-rw-r--r--lib/sqlalchemy/types.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sqlalchemy/types.py b/lib/sqlalchemy/types.py
index c6e3ee3d6..2be40880c 100644
--- a/lib/sqlalchemy/types.py
+++ b/lib/sqlalchemy/types.py
@@ -14,10 +14,10 @@ For more information see the SQLAlchemy documentation on types.
__all__ = [ 'TypeEngine', 'TypeDecorator', 'AbstractType', 'UserDefinedType',
'INT', 'CHAR', 'VARCHAR', 'NCHAR', 'NVARCHAR','TEXT', 'Text',
'FLOAT', 'NUMERIC', 'REAL', 'DECIMAL', 'TIMESTAMP', 'DATETIME',
- 'CLOB', 'BLOB', 'BOOLEAN', 'SMALLINT', 'INTEGER', 'DATE', 'TIME',
- 'String', 'Integer', 'SmallInteger', 'BigInteger', 'Numeric',
- 'Float', 'DateTime', 'Date', 'Time', 'LargeBinary', 'Binary',
- 'Boolean', 'Unicode', 'Concatenable',
+ 'CLOB', 'BLOB', 'BINARY', 'VARBINARY', 'BOOLEAN', 'SMALLINT',
+ 'INTEGER', 'DATE', 'TIME', 'String', 'Integer', 'SmallInteger',
+ 'BigInteger', 'Numeric', 'Float', 'DateTime', 'Date', 'Time',
+ 'LargeBinary', 'Binary', 'Boolean', 'Unicode', 'Concatenable',
'UnicodeText','PickleType', 'Interval', 'Enum' ]
import inspect