From 885f15a306efc4c907ca82fa13871992ee556466 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 15 Jan 2019 10:49:36 -0500 Subject: Remove version directives for 0.6, 0.7, 0.8 - fix a few "seealso"s - ComparableProprerty's "superseded in 0.7" becomes deprecated in 0.7 Backport to currently maintained doc versions 1.2, 1.1 Change-Id: Ib1fcb2df8673dbe5c4ffc47f3896a60d1dfcb4b2 --- lib/sqlalchemy/sql/functions.py | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'lib/sqlalchemy/sql/functions.py') diff --git a/lib/sqlalchemy/sql/functions.py b/lib/sqlalchemy/sql/functions.py index cc145cf51..075a2f826 100644 --- a/lib/sqlalchemy/sql/functions.py +++ b/lib/sqlalchemy/sql/functions.py @@ -129,8 +129,6 @@ class FunctionElement(Executable, ColumnElement, FromClause): See :func:`~.expression.over` for a full description. - .. versionadded:: 0.7 - """ return Over( self, @@ -505,10 +503,6 @@ func = _FunctionGenerator() but are not exactly the same as "functions" from a SQLAlchemy perspective. - .. versionadded:: 0.8 :data:`.func` can return non-function expression - constructs for common quasi-functional names like :func:`.cast` - and :func:`.extract`. - Functions which are interpreted as "generic" functions know how to calculate their return type automatically. For a listing of known generic functions, see :ref:`generic_functions`. @@ -645,15 +639,6 @@ class GenericFunction(util.with_metaclass(_GenericMeta, Function)): >>> print func.geo.buffer() ST_Buffer() - .. versionadded:: 0.8 :class:`.GenericFunction` now supports - automatic registration of new functions as well as package - and custom naming support. - - .. versionchanged:: 0.8 The attribute name ``type`` is used - to specify the function's return type at the class level. - Previously, the name ``__return_type__`` was used. This - name is still recognized for backwards-compatibility. - """ coerce_arguments = True -- cgit v1.2.1