]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
reword changelog + credit contributor for #9156
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 28 Jan 2023 21:51:02 +0000 (16:51 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 28 Jan 2023 21:51:02 +0000 (16:51 -0500)
Change-Id: Ib5ab3cedd30ee0b0486c12e7c20b07aa76be1128

doc/build/changelog/unreleased_20/9156.rst

index 9fbeb44eb51f751e4b945cf377f9d2ef4123d18b..956d3ca33cc473c78d4d8255f2834be05e2f89a7 100644 (file)
@@ -2,6 +2,6 @@
     :tags: bug, typing
     :tickets: 9156
 
-    The :meth:`_expression.ColumnElement.cast` is typed to accept
-    both ``Type[TypeEngine[T]]`` and ``TypeEngine[T]`` rather only
-    ``TypeEngine[T]``.
\ No newline at end of file
+    Fixed typing for :meth:`_expression.ColumnElement.cast` to accept
+    both ``Type[TypeEngine[T]]`` and ``TypeEngine[T]``; previously
+    only ``TypeEngine[T]`` was accepted.  Pull request courtesy Yurii Karabas.