From: Federico Caselli Date: Tue, 20 May 2025 20:47:39 +0000 (+0200) Subject: improve changelog for ticket:`12479` X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=675baea882424be5e42954c027c236b6fc3408f4;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git improve changelog for ticket:`12479` Change-Id: I20fd3eabdb3777acd2ff7ffa144367929f2127d5 --- diff --git a/doc/build/changelog/unreleased_21/12479.rst b/doc/build/changelog/unreleased_21/12479.rst index 4cced479b1..8ed5c0be35 100644 --- a/doc/build/changelog/unreleased_21/12479.rst +++ b/doc/build/changelog/unreleased_21/12479.rst @@ -2,5 +2,8 @@ :tags: core, feature, sql :tickets: 12479 - The Core operator system now includes the `matmul` operator, i.e. the - @ operator in Python as an optional operator. + The Core operator system now includes the ``matmul`` operator, i.e. the + ``@`` operator in Python as an optional operator. + In addition to the ``__matmul__`` and ``__rmatmul__`` operator support + this change also adds the missing ``__rrshift__`` and ``__rlshift__``. + Pull request courtesy Aramís Segovia.