summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-10-17 22:32:53 (GMT)
committerGitHub <noreply@github.com>2023-10-17 22:32:53 (GMT)
commit7029c1a1c5b864056aa00298b1d0e0269f073f99 (patch)
tree20b3a26eea88e5ebb22e9f2f5c0328e2b8016c9f /Doc
parenta53d7cb6729dc3f254b70afcf19eaf71a2eed540 (diff)
downloadcpython-7029c1a1c5b864056aa00298b1d0e0269f073f99.zip
cpython-7029c1a1c5b864056aa00298b1d0e0269f073f99.tar.gz
cpython-7029c1a1c5b864056aa00298b1d0e0269f073f99.tar.bz2
gh-85283: Build _scproxy extension with limited C API (#111008)
* Replace Py_SETREF(v, NULL) with Py_CLEAR(v). * Reformat the code.
Diffstat (limited to 'Doc')
-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 24a53b7..54f007f 100644
--- a/Doc/whatsnew/3.13.rst
+++ b/Doc/whatsnew/3.13.rst
@@ -933,8 +933,8 @@ Build Changes
library, GCC built-in atomic functions, or MSVC interlocked intrinsics.
* The ``errno``, ``md5``, ``resource``, ``winsound``, ``_ctypes_test``,
- ``_stat`` and ``_testimportmultiple`` C extensions are now built with the
- :ref:`limited C API <limited-c-api>`.
+ ``_scproxy``, ``_stat`` and ``_testimportmultiple`` C extensions are now
+ built with the :ref:`limited C API <limited-c-api>`.
(Contributed by Victor Stinner in :gh:`85283`.)