From ee7e49964fcf13ed0f5a3541b81f00302a9db29a Mon Sep 17 00:00:00 2001 From: Federico Caselli Date: Wed, 12 Apr 2023 23:17:38 +0200 Subject: Remove old versionadded and versionchanged Removed versionadded and versionchanged for version prior to 1.2 since they are no longer useful. Change-Id: I5c53d1188bc5fec3ab4be39ef761650ed8fa6d3e --- lib/sqlalchemy/sql/operators.py | 9 --------- 1 file changed, 9 deletions(-) (limited to 'lib/sqlalchemy/sql/operators.py') diff --git a/lib/sqlalchemy/sql/operators.py b/lib/sqlalchemy/sql/operators.py index ab9ddf85c..352e5b62d 100644 --- a/lib/sqlalchemy/sql/operators.py +++ b/lib/sqlalchemy/sql/operators.py @@ -553,8 +553,6 @@ class ColumnOperators(Operators): Renders "a IS DISTINCT FROM b" on most platforms; on some such as SQLite may render "a IS NOT b". - .. versionadded:: 1.1 - """ return self.operate(is_distinct_from, other) @@ -568,8 +566,6 @@ class ColumnOperators(Operators): renamed from ``isnot_distinct_from()`` in previous releases. The previous name remains available for backwards compatibility. - .. versionadded:: 1.1 - """ return self.operate(is_not_distinct_from, other) @@ -1760,8 +1756,6 @@ class ColumnOperators(Operators): :meth:`_types.ARRAY.Comparator.any` method, which a different calling syntax and usage pattern. - .. versionadded:: 1.1 - """ return self.operate(any_op) @@ -1777,9 +1771,6 @@ class ColumnOperators(Operators): :meth:`_types.ARRAY.Comparator.all` method, which a different calling syntax and usage pattern. - - .. versionadded:: 1.1 - """ return self.operate(all_op) -- cgit v1.2.1