]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Update docstring
authorjazzthief <mynameisyegor@gmail.com>
Thu, 19 Jan 2023 16:59:22 +0000 (17:59 +0100)
committerjazzthief <mynameisyegor@gmail.com>
Thu, 19 Jan 2023 16:59:22 +0000 (17:59 +0100)
lib/sqlalchemy/sql/default_comparator.py

index 766d80574e7a34d25c100aca7dd4d68a5fe93216..57460b03651041f9878c582507d6cc38fc01ef38 100644 (file)
@@ -276,7 +276,7 @@ def _neg_impl(
 def _bitwise_not_impl(
     expr: ColumnElement[Any], op: OperatorType, **kw: Any
 ) -> ColumnElement[Any]:
-    """Binary negation implementation"""
+    """See :meth:`.ColumnOperators.bitwise_not`."""
 
     return UnaryExpression(
         expr, operator=operators.bitwise_not_op, type_=expr.type