]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
more function adjustments
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 22 Aug 2022 17:55:08 +0000 (13:55 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 22 Aug 2022 17:55:08 +0000 (13:55 -0400)
the inherited-members feature works very poorly
and inconsistently in sphinx.  just dont use it here as it
refuses to exclude ColumnOperators methods

Change-Id: Ic50865c9901e7225a99ff7f33454da15ff91b12f

doc/build/core/functions.rst
lib/sqlalchemy/sql/functions.py

index 00e384679cc4c21a0e810712d177e89a2531c9d1..efa7c78d33f3e5c817f5178b112cfb6666f3782e 100644 (file)
@@ -25,9 +25,6 @@ namespace as well as classes that may be used for extensibility.
    :exclude-members: inherit_cache, __new__
 
 .. autoclass:: Function
-   :members:
-   :inherited-members: ColumnElement
-   :exclude-members: inherit_cache, __new__
 
 .. autoclass:: FunctionElement
    :members:
index 77c93aed6c656c6e051ae66bf10c278f37e4c24d..a028e7fedbd3ca36e12a2b413c665a34900702ed 100644 (file)
@@ -572,7 +572,7 @@ class FunctionElement(Executable, ColumnElement[_T], FromClause, Generative):
         in the columns or where clause, for a backend such as PostgreSQL.
 
         For a full table-valued expression, use the
-        :meth:`_function.FunctionElement.table_valued` method first to
+        :meth:`_functions.FunctionElement.table_valued` method first to
         establish named columns.
 
         e.g.::