gh-61103: Add What's New entry for complex types in ctypes (GH-129129)

Co-authored-by: Sergey B Kirpichev <skirpichev@gmail.com>
This commit is contained in:
Petr Viktorin 2025-01-22 10:59:20 +01:00 committed by GitHub
parent edf803345a
commit a65f802692
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -351,6 +351,12 @@ ctypes
callback functions that are passed dynamically-sized buffers.
(Contributed by Rian Hunter in :gh:`112018`.)
* Complex types, :class:`~ctypes.c_float_complex`,
:class:`~ctypes.c_double_complex` and :class:`~ctypes.c_longdouble_complex`,
are now available if both the compiler and the ``libffi`` library support
complex C types.
(Contributed by Sergey B Kirpichev in :gh:`61103`).
datetime
--------