diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-05-04 17:37:56 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-05-04 17:37:56 -0400 |
| commit | 391ca4dc8ee0f78dec86a1ab431d4fcfa7590de3 (patch) | |
| tree | 92239c9556ac1f6fed1a3d2e8b2bacb9ca16cb65 | |
| parent | b5559d307039767f7aa961c537b985e56e81deaf (diff) | |
| download | sqlalchemy-391ca4dc8ee0f78dec86a1ab431d4fcfa7590de3.tar.gz | |
- [bug] Add BINARY, VARBINARY to types.__all__,
[ticket:2474]
| -rw-r--r-- | CHANGES | 3 | ||||
| -rw-r--r-- | lib/sqlalchemy/types.py | 8 |
2 files changed, 7 insertions, 4 deletions
@@ -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 |
