summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES3
-rw-r--r--lib/sqlalchemy/types.py8
2 files changed, 7 insertions, 4 deletions
diff --git a/CHANGES b/CHANGES
index 5be84a0b0..6b7d50c6f 100644
--- a/CHANGES
+++ b/CHANGES
@@ -233,6 +233,9 @@ CHANGES
propagating the exception onward normally.
also in 0.7.7.
+ - [bug] Add BINARY, VARBINARY to types.__all__,
+ [ticket:2474] Also in 0.7.7
+
- sqlite
- [feature] the SQLite date and time types
have been overhauled to support a more open
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