@@ -261,10 +261,6 @@ platform-dependent.
261261+--------+--------------------------+--------------------+----------------+------------+
262262| ``d `` | :c:expr: `double ` | float | 8 | \( 4) |
263263+--------+--------------------------+--------------------+----------------+------------+
264- | ``F `` | :c:expr: `float complex ` | complex | 8 | \( 10) |
265- +--------+--------------------------+--------------------+----------------+------------+
266- | ``D `` | :c:expr: `double complex ` | complex | 16 | \( 10) |
267- +--------+--------------------------+--------------------+----------------+------------+
268264| ``Zf `` | :c:expr: `float complex ` | complex | 8 | \( 10) |
269265+--------+--------------------------+--------------------+----------------+------------+
270266| ``Zd `` | :c:expr: `double complex ` | complex | 16 | \( 10) |
@@ -287,6 +283,7 @@ platform-dependent.
287283
288284.. versionchanged :: 3.15
289285 Added support for the ``'Zf' `` and ``'Zd' `` formats.
286+ ``'F' `` and ``'D' `` formats are :term: `soft deprecated `.
290287
291288.. seealso ::
292289
@@ -377,13 +374,15 @@ Notes:
377374 are accepted.
378375
379376(10)
380- For the ``'F ' `` and ``'D ' `` type codes, the packed representation uses
377+ For the ``'Zf ' `` and ``'Zd ' `` type codes, the packed representation uses
381378 the IEEE 754 binary32 and binary64 format for components of the complex
382379 number, regardless of the floating-point format used by the platform.
383- Note that complex types (`` F ``/`` Zf `` and `` D ``/`` Zd ``) are available unconditionally,
380+ Note that complex types are available unconditionally,
384381 despite complex types being an optional feature in C.
385382 As specified in the C11 standard, each complex type is represented by a
386383 two-element C array containing, respectively, the real and imaginary parts.
384+ The ``'F' `` and ``'D' `` (for ``'Zf' `` and ``'Zd' ``, respectively) format
385+ characters are supported for compatibility.
387386
388387
389388A type code may be preceded by an integral repeat count. For example,
0 commit comments