summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-10-17 21:52:58 (GMT)
committerGitHub <noreply@github.com>2023-10-17 21:52:58 (GMT)
commite37620edfd77b78b913b5eab55cd91327c3e7fd3 (patch)
treee6822baf3cfa84f757ab6a6a4c06c7f664f25c83 /Doc
parent2ba6f68890cf6d5baec4f98a8c05e76c3b13b816 (diff)
downloadcpython-e37620edfd77b78b913b5eab55cd91327c3e7fd3.zip
cpython-e37620edfd77b78b913b5eab55cd91327c3e7fd3.tar.gz
cpython-e37620edfd77b78b913b5eab55cd91327c3e7fd3.tar.bz2
gh-85283: Build resource extension with limited C API (#110989)
* Replace PyStructSequence_SET_ITEM() with PyStructSequence_SetItem(). * Replace PyTuple_GET_SIZE() with PyTuple_Size(). * Replace PyTuple_GET_ITEM() with PyTuple_GetItem().
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.13.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst
index 42e0593..24a53b7 100644
--- a/Doc/whatsnew/3.13.rst
+++ b/Doc/whatsnew/3.13.rst
@@ -932,9 +932,9 @@ Build Changes
* Building CPython now requires a compiler with support for the C11 atomic
library, GCC built-in atomic functions, or MSVC interlocked intrinsics.
-* The ``errno``, ``md5``, ``winsound``, ``_ctypes_test``, ``_stat`` and
- ``_testimportmultiple`` C extensions are now built with the :ref:`limited C
- API <limited-c-api>`.
+* The ``errno``, ``md5``, ``resource``, ``winsound``, ``_ctypes_test``,
+ ``_stat`` and ``_testimportmultiple`` C extensions are now built with the
+ :ref:`limited C API <limited-c-api>`.
(Contributed by Victor Stinner in :gh:`85283`.)