summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-10-17 01:05:20 (GMT)
committerGitHub <noreply@github.com>2023-10-17 01:05:20 (GMT)
commit37bd8726b87c1c41f58cef031f5b6d5f900d265b (patch)
tree04ce00a1525ca7e45aed45dffc28c8bce577aba8 /Doc/whatsnew
parentcc71cc925662cb089b5c6fe17df00d00045dfd71 (diff)
downloadcpython-37bd8726b87c1c41f58cef031f5b6d5f900d265b.zip
cpython-37bd8726b87c1c41f58cef031f5b6d5f900d265b.tar.gz
cpython-37bd8726b87c1c41f58cef031f5b6d5f900d265b.tar.bz2
gh-85283: Build errno and _ctypes_test with limited C API (#110955)
_testimportmultiple is now built with limited C API version 3.2.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.13.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst
index ec76659..a932be4 100644
--- a/Doc/whatsnew/3.13.rst
+++ b/Doc/whatsnew/3.13.rst
@@ -932,8 +932,8 @@ 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 ``_stat`` and ``_testimportmultiple`` C extensions are now built with the
- :ref:`limited C API <limited-c-api>`.
+* The ``errno``, ``_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`.)