From: Sergey B Kirpichev Date: Tue, 1 Apr 2025 07:16:36 +0000 (+0300) Subject: gh-121249: Note struct module changes in What's New (#131867) X-Git-Tag: v3.14.0a7~114 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2505573f2094092b6262e5831c9832d95e77f223;p=thirdparty%2FPython%2Fcpython.git gh-121249: Note struct module changes in What's New (#131867) Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com> --- diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst index ac5b53ef94bf..8a617d4a1230 100644 --- a/Doc/whatsnew/3.14.rst +++ b/Doc/whatsnew/3.14.rst @@ -904,6 +904,15 @@ ssl (Contributed by Will Childs-Klein in :gh:`128036`.) +struct +------ + +* Support the :c:expr:`float complex` and :c:expr:`double complex` C types in + the :mod:`struct` module (formatting characters ``'E'`` and ``'C'``, + respectively) if the compiler has C11 complex arithmetic. + (Contributed by Sergey B Kirpichev in :gh:`121249`.) + + symtable --------