diff options
author | Victor Stinner <vstinner@python.org> | 2024-03-15 07:49:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-15 07:49:58 (GMT) |
commit | 8fc8fbb43a8bb46c04ab55f96049039de243afb0 (patch) | |
tree | 17e90d405c7409abaad099fef4b3b7f0b8b4e7d6 /Doc | |
parent | 41e844a4acbd5070f675e034e31c988b4849dec9 (diff) | |
download | cpython-8fc8fbb43a8bb46c04ab55f96049039de243afb0.zip cpython-8fc8fbb43a8bb46c04ab55f96049039de243afb0.tar.gz cpython-8fc8fbb43a8bb46c04ab55f96049039de243afb0.tar.bz2 |
gh-85283: Build pwd extension with the limited C API (#116841)
Argument Clinic now uses the PEP 737 "%T" format to format type name
for the limited C API.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.13.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index 856c6ee..03ae601 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -1469,7 +1469,7 @@ 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``, ``fcntl``, ``grp``, ``md5``, ``resource``, ``winsound``, +* The ``errno``, ``fcntl``, ``grp``, ``md5``, ``pwd``, ``resource``, ``winsound``, ``_ctypes_test``, ``_multiprocessing.posixshmem``, ``_scproxy``, ``_stat``, ``_testimportmultiple`` and ``_uuid`` C extensions are now built with the :ref:`limited C API <limited-c-api>`. |