diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-06-13 17:55:10 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-06-13 17:55:10 -0400 |
| commit | a29245e247698160172e42e2154180997b81b8ba (patch) | |
| tree | 36a894e2a96743138add7e7dee49f5982375bc31 /lib/sqlalchemy/__init__.py | |
| parent | dfbf68046bc717eb862fa37e4d7207160fe5760e (diff) | |
| download | sqlalchemy-a29245e247698160172e42e2154180997b81b8ba.tar.gz | |
- [bug] Added BIGINT, BINARY, VARBINARY to
types.__all__, sqlalchemy namespaces,
plus tests to make sure new types
remain importable.
[ticket:2499]
Diffstat (limited to 'lib/sqlalchemy/__init__.py')
| -rw-r--r-- | lib/sqlalchemy/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/sqlalchemy/__init__.py b/lib/sqlalchemy/__init__.py index d8534dd49..08efee600 100644 --- a/lib/sqlalchemy/__init__.py +++ b/lib/sqlalchemy/__init__.py @@ -48,6 +48,8 @@ from sqlalchemy.sql import ( ) from sqlalchemy.types import ( + BIGINT, + BINARY, BLOB, BOOLEAN, BigInteger, @@ -85,6 +87,7 @@ from sqlalchemy.types import ( TypeDecorator, Unicode, UnicodeText, + VARBINARY, VARCHAR, ) |
