From: Aramís Segovia Date: Tue, 13 May 2025 17:20:32 +0000 (-0400) Subject: Fix docstring for `__rlshift__` X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7e69d23610f39468b24c0a9a1ffdbdab20ae34fb;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix docstring for `__rlshift__` --- diff --git a/lib/sqlalchemy/sql/operators.py b/lib/sqlalchemy/sql/operators.py index 7c36bdc469..7e751e13d0 100644 --- a/lib/sqlalchemy/sql/operators.py +++ b/lib/sqlalchemy/sql/operators.py @@ -672,7 +672,7 @@ class ColumnOperators(Operators): return self.operate(lshift, other) def __rlshift__(self, other: Any) -> ColumnOperators: - """Implement the ``<<`` operator. + """Implement the ``<<`` operator in reverse. Not used by SQLAlchemy core, this is provided for custom operator systems which want to use