]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- shore up TypeDecorator docs a bit to not render tons of
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 11 Aug 2019 02:20:31 +0000 (22:20 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 11 Aug 2019 02:20:31 +0000 (22:20 -0400)
comparator methods

Change-Id: I8f434b18b2bd632a0db0db1376262944272d2198

doc/build/core/custom_types.rst
lib/sqlalchemy/sql/type_api.py

index fca0ddb03e9c5d55a7199e3b4afb5d74b7f5e407..e1ea26a9c4f8c61228356129d616f56dd8457f30 100644 (file)
@@ -66,7 +66,6 @@ to and/or from the database is required.
 
 .. autoclass:: TypeDecorator
    :members:
-   :inherited-members:
 
 
 TypeDecorator Recipes
index 5eea27e08a14889fd2828d7471f6e73ed54b9351..9838f0d5afc5c919c5bd665cf2d38db841141c98 100644 (file)
@@ -910,6 +910,15 @@ class TypeDecorator(SchemaEventTarget, TypeEngine):
     """
 
     class Comparator(TypeEngine.Comparator):
+        """A :class:`.TypeEngine.Comparator` that is specific to
+        :class:`.TypeDecorator`.
+
+        User-defined :class:`.TypeDecorator` classes should not typically
+        need to modify this.
+
+
+        """
+
         __slots__ = ()
 
         def operate(self, op, *other, **kwargs):