diff options
author | Victor Stinner <vstinner@python.org> | 2023-10-11 22:06:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-11 22:06:20 (GMT) |
commit | 88ecb190f3717f7f0d663d004fc4b63c7e7bce77 (patch) | |
tree | 0b30d871d9d2f66e2bddf83bd63cff82a543a896 /Doc/whatsnew | |
parent | b4e8049766a46a9e6548b18d7e9a0c9f573cd122 (diff) | |
download | cpython-88ecb190f3717f7f0d663d004fc4b63c7e7bce77.zip cpython-88ecb190f3717f7f0d663d004fc4b63c7e7bce77.tar.gz cpython-88ecb190f3717f7f0d663d004fc4b63c7e7bce77.tar.bz2 |
gh-85283: _stat extension now uses the limited C API (#110711)
gh-85283: _stat extension uses the limited C API
The _stat C extension is now built with the limited C API.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.13.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index b0a0d89..dfce976 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -928,6 +928,10 @@ 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`` C extension is now built with the :ref:`limited C API + <limited-c-api>`. + (Contributed by Victor Stinner in :gh:`85283`.) + C API Changes ============= |