diff options
| author | Vraj Mohan <r.vrajmohan@gmail.com> | 2013-11-14 13:33:31 -0500 |
|---|---|---|
| committer | Vraj Mohan <r.vrajmohan@gmail.com> | 2013-11-14 14:31:38 -0500 |
| commit | f839c85c20bec22b5e45a0222841d7df08da33a3 (patch) | |
| tree | 1a36508f756966409611c74f40564e40a59fb3fe | |
| parent | a26af7d823f120df6627552a9b8885ba40775ca2 (diff) | |
| download | sqlalchemy-f839c85c20bec22b5e45a0222841d7df08da33a3.tar.gz | |
Remove references to (previously removed) AbstractType
| -rw-r--r-- | doc/build/core/types.rst | 4 | ||||
| -rw-r--r-- | lib/sqlalchemy/types.py | 2 |
2 files changed, 1 insertions, 5 deletions
diff --git a/doc/build/core/types.rst b/doc/build/core/types.rst index 47145837f..b4781ee51 100644 --- a/doc/build/core/types.rst +++ b/doc/build/core/types.rst @@ -729,10 +729,6 @@ is needed, use :class:`.TypeDecorator` instead. Base Type API -------------- -.. autoclass:: AbstractType - :members: - - .. autoclass:: TypeEngine :members: diff --git a/lib/sqlalchemy/types.py b/lib/sqlalchemy/types.py index e64b67fcf..b51bf510a 100644 --- a/lib/sqlalchemy/types.py +++ b/lib/sqlalchemy/types.py @@ -8,7 +8,7 @@ """ -__all__ = ['TypeEngine', 'TypeDecorator', 'AbstractType', 'UserDefinedType', +__all__ = ['TypeEngine', 'TypeDecorator', 'UserDefinedType', 'INT', 'CHAR', 'VARCHAR', 'NCHAR', 'NVARCHAR', 'TEXT', 'Text', 'FLOAT', 'NUMERIC', 'REAL', 'DECIMAL', 'TIMESTAMP', 'DATETIME', 'CLOB', 'BLOB', 'BINARY', 'VARBINARY', 'BOOLEAN', 'BIGINT', |
