https://github.com/python/cpython/commit/a65f802692bd04e1ad18e467d4ccb033b049c2a7 commit: a65f802692bd04e1ad18e467d4ccb033b049c2a7 branch: main author: Petr Viktorin <[email protected]> committer: encukou <[email protected]> date: 2025-01-22T10:59:20+01:00 summary:
gh-61103: Add What's New entry for complex types in ctypes (GH-129129) Co-authored-by: Sergey B Kirpichev <[email protected]> files: M Doc/whatsnew/3.14.rst diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst index 0dcecd4944f2f6..5652a63ce8d701 100644 --- a/Doc/whatsnew/3.14.rst +++ b/Doc/whatsnew/3.14.rst @@ -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 -------- _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
