]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- Fixed regression from 0.9.9 where the :func:`.as_declarative`
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 12 Mar 2015 20:22:08 +0000 (16:22 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 12 Mar 2015 20:22:08 +0000 (16:22 -0400)
symbol was removed from the ``sqlalchemy.ext.declarative``
namespace.
fixes #3324

doc/build/changelog/changelog_09.rst
lib/sqlalchemy/ext/declarative/__init__.py

index d6439cc1ee2c8d79bab92055c527b23e7435716e..e993371e9580ac4e71a05be6c0c283741483ec4f 100644 (file)
 .. changelog::
     :version: 0.9.10
 
+    .. change::
+        :tags: bug, ext
+        :tickets: 3324
+
+        Fixed regression from 0.9.9 where the :func:`.as_declarative`
+        symbol was removed from the ``sqlalchemy.ext.declarative``
+        namespace.
+
     .. change::
         :tags: feature, orm
         :tickets: 3320
index 50f5e400fd2c86e20d1785d383abba0ec6db2ae4..f703000bbea298bd87b433179d83258c0772e508 100644 (file)
@@ -8,10 +8,11 @@
 from .api import declarative_base, synonym_for, comparable_using, \
     instrument_declarative, ConcreteBase, AbstractConcreteBase, \
     DeclarativeMeta, DeferredReflection, has_inherited_table,\
-    declared_attr
+    declared_attr, as_declarative
 
 
 __all__ = ['declarative_base', 'synonym_for', 'has_inherited_table',
            'comparable_using', 'instrument_declarative', 'declared_attr',
+           'as_declarative',
            'ConcreteBase', 'AbstractConcreteBase', 'DeclarativeMeta',
            'DeferredReflection']