]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- [bug] Add BINARY, VARBINARY to types.__all__,
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 4 May 2012 21:37:56 +0000 (17:37 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 4 May 2012 21:37:56 +0000 (17:37 -0400)
    [ticket:2474]

CHANGES
lib/sqlalchemy/types.py

diff --git a/CHANGES b/CHANGES
index 5be84a0b0268f8604b57275b9a9d01d23eb1044b..6b7d50c6f2ebf899767957fbf09583b5ee00f65c 100644 (file)
--- 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
index c6e3ee3d6fed822ea14878e5b74ca1be5fe4480a..2be40880cbef98698a63dfbcc67f0036930873bd 100644 (file)
@@ -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