diff options
author | Victor Stinner <vstinner@python.org> | 2024-03-17 15:12:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-17 15:12:29 (GMT) |
commit | 1cf03010865c66c2c3286ffdafd55e7ce2d97444 (patch) | |
tree | 22a12be21f1ae53fda337af1498fb0d9adebe385 /Doc | |
parent | 8e3c953b3acd7c656f66696806c9ae917e816492 (diff) | |
download | cpython-1cf03010865c66c2c3286ffdafd55e7ce2d97444.zip cpython-1cf03010865c66c2c3286ffdafd55e7ce2d97444.tar.gz cpython-1cf03010865c66c2c3286ffdafd55e7ce2d97444.tar.bz2 |
gh-85283: Build termios extension with the limited C API (#116928)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.13.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index 78b5868..3e08d80 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -1479,7 +1479,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 ``errno``, ``fcntl``, ``grp``, ``md5``, ``pwd``, ``resource``, ``winsound``, +* The ``errno``, ``fcntl``, ``grp``, ``md5``, ``pwd``, ``resource``, + ``termios``, ``winsound``, ``_ctypes_test``, ``_multiprocessing.posixshmem``, ``_scproxy``, ``_stat``, ``_testimportmultiple`` and ``_uuid`` C extensions are now built with the :ref:`limited C API <limited-c-api>`. |