diff options
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/array.py')
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/array.py | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/array.py b/lib/sqlalchemy/dialects/postgresql/array.py index 3cb60d3f3..9659d31b9 100644 --- a/lib/sqlalchemy/dialects/postgresql/array.py +++ b/lib/sqlalchemy/dialects/postgresql/array.py @@ -16,13 +16,8 @@ from ...sql import roles def Any(other, arrexpr, operator=operators.eq): - """A synonym for the :meth:`.ARRAY.Comparator.any` method. - - This method is legacy and is here for backwards-compatibility. - - .. seealso:: - - :func:`_expression.any_` + """A synonym for the ARRAY-level :meth:`.ARRAY.Comparator.any` method. + See that method for details. """ @@ -30,13 +25,8 @@ def Any(other, arrexpr, operator=operators.eq): def All(other, arrexpr, operator=operators.eq): - """A synonym for the :meth:`.ARRAY.Comparator.all` method. - - This method is legacy and is here for backwards-compatibility. - - .. seealso:: - - :func:`_expression.all_` + """A synonym for the ARRAY-level :meth:`.ARRAY.Comparator.all` method. + See that method for details. """ |