]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- Restored the import for :class:`.Function` to the ``sqlalchemy.sql.expression``
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 6 Apr 2014 01:05:29 +0000 (21:05 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 6 Apr 2014 01:05:29 +0000 (21:05 -0400)
import namespace, which was removed at the beginning of 0.9.

doc/build/changelog/changelog_09.rst
lib/sqlalchemy/sql/expression.py

index fab32241681ad34d8c4b965a394733f864a55a3e..7c7f1757e6d991c273b8c47380294b4803530b87 100644 (file)
 .. changelog::
     :version: 0.9.5
 
+    .. change::
+        :tags: bug, sql
+
+        Restored the import for :class:`.Function` to the ``sqlalchemy.sql.expression``
+        import namespace, which was removed at the beginning of 0.9.
+
     .. change::
         :tags: bug, orm, sql
         :tickets: 3013
index c99665b426eee37ae4de2c08a873a3f0f8e9c52f..9458aed04644f35de8bc5ac31a70b08baeafc9a2 100644 (file)
@@ -27,7 +27,7 @@ __all__ = [
 
 
 from .visitors import Visitable
-from .functions import func, modifier, FunctionElement
+from .functions import func, modifier, FunctionElement, Function
 from ..util.langhelpers import public_factory
 from .elements import ClauseElement, ColumnElement,\
   BindParameter, UnaryExpression, BooleanClauseList, \