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/dml.py | 7 ------- 1 file changed, 7 deletions(-) (limited to 'lib/sqlalchemy/sql/dml.py') diff --git a/lib/sqlalchemy/sql/dml.py b/lib/sqlalchemy/sql/dml.py index f803af9e6..3c40e7914 100644 --- a/lib/sqlalchemy/sql/dml.py +++ b/lib/sqlalchemy/sql/dml.py @@ -183,8 +183,6 @@ class UpdateBase( mytable.insert().with_hint("WITH (PAGLOCK)", dialect_name="mssql") - .. versionadded:: 0.7.6 - :param text: Text of the hint. :param selectable: optional :class:`.Table` that specifies an element of the FROM clause within an UPDATE or DELETE @@ -599,8 +597,6 @@ class Insert(ValuesBase): deals with an arbitrary number of rows, so the :attr:`.ResultProxy.inserted_primary_key` accessor does not apply. - .. versionadded:: 0.8.3 - """ if self.parameters: raise exc.InvalidRequestError( @@ -685,9 +681,6 @@ class Update(ValuesBase): as_scalar() ) - .. versionchanged:: 0.7.4 - The WHERE clause of UPDATE can refer to multiple tables. - :param values: Optional dictionary which specifies the ``SET`` conditions of the ``UPDATE``. If left as ``None``, the ``SET`` -- cgit v1.2.1