@@ -536,16 +536,14 @@ have been standardized in C11 (or previous standards).
536536
537537 Use the standard ``alignas `` specifier rather than this macro.
538538
539- .. deprecated :: 3.15
540- The macro is :term: `soft deprecated `.
539+ .. soft-deprecated :: 3.15
541540
542541.. c :macro :: PY_FORMAT_SIZE_T
543542
544543 The :c:func: `printf ` formatting modifier for :c:type: `size_t `.
545544 Use ``"z" `` directly instead.
546545
547- .. deprecated :: 3.15
548- The macro is :term: `soft deprecated `.
546+ .. soft-deprecated :: 3.15
549547
550548.. c :macro :: Py_LL(number)
551549 Py_ULL (number)
@@ -558,8 +556,7 @@ have been standardized in C11 (or previous standards).
558556
559557 Consider using the C99 standard suffixes ``LL`` and ``LLU`` directly.
560558
561- .. deprecated:: 3.15
562- The macro is :term:`soft deprecated`.
559+ .. soft-deprecated:: 3.15
563560
564561.. c:macro:: PY_LONG_LONG
565562 PY_INT32_T
@@ -572,8 +569,7 @@ have been standardized in C11 (or previous standards).
572569 respectively.
573570 Historically, these types needed compiler-specific extensions.
574571
575- .. deprecated:: 3.15
576- These macros are :term:`soft deprecated`.
572+ .. soft-deprecated:: 3.15
577573
578574.. c:macro:: PY_LLONG_MIN
579575 PY_LLONG_MAX
@@ -587,16 +583,14 @@ have been standardized in C11 (or previous standards).
587583 The required header, ``<limits.h>``,
588584 :ref:`is included <capi-system-includes>` in ``Python.h``.
589585
590- .. deprecated:: 3.15
591- These macros are :term:`soft deprecated`.
586+ .. soft-deprecated:: 3.15
592587
593588.. c:macro:: Py_MEMCPY(dest, src, n)
594589
595590 This is a :term:`soft deprecated` alias to :c:func:`!memcpy`.
596591 Use :c:func:`!memcpy` directly instead.
597592
598- .. deprecated:: 3.14
599- The macro is :term:`soft deprecated`.
593+ .. soft-deprecated:: 3.14
600594
601595.. c:macro:: Py_UNICODE_SIZE
602596
@@ -606,16 +600,14 @@ have been standardized in C11 (or previous standards).
606600 The required header for the latter, ``<limits.h>``,
607601 :ref:`is included <capi-system-includes>` in ``Python.h``.
608602
609- .. deprecated:: 3.15
610- The macro is :term:`soft deprecated`.
603+ .. soft-deprecated:: 3.15
611604
612605.. c:macro:: Py_UNICODE_WIDE
613606
614607 Defined if ``wchar_t`` can hold a Unicode character (UCS-4).
615608 Use ``sizeof(wchar_t) >= 4`` instead
616609
617- .. deprecated:: 3.15
618- The macro is :term:`soft deprecated`.
610+ .. soft-deprecated:: 3.15
619611
620612.. c:macro:: Py_VA_COPY
621613
@@ -627,8 +619,7 @@ have been standardized in C11 (or previous standards).
627619 .. versionchanged:: 3.6
628620 This is now an alias to ``va_copy``.
629621
630- .. deprecated:: 3.15
631- The macro is :term:`soft deprecated`.
622+ .. soft-deprecated:: 3.15
632623
633624
634625.. _api-objects:
0 commit comments